diff --git a/src/Components/Charts/StatusPageBarChart/index.jsx b/src/Components/Charts/StatusPageBarChart/index.jsx
index 5acf4c3d6..46e8ae2a1 100644
--- a/src/Components/Charts/StatusPageBarChart/index.jsx
+++ b/src/Components/Charts/StatusPageBarChart/index.jsx
@@ -24,6 +24,21 @@ const StatusPageBarChart = ({ checks = [] }) => {
checks = [...checks, ...placeholders];
}
+ const BarBox = ({ width, height, backgroundColor, borderRadius, children }) => (
+
+ {children}
+
+ );
+
return (
{
/* TODO what is the purpose of this box? */
// CAIO_REVIEW the purpose of this box is to make sure there are always at least 25 bars
// even if there are less than 25 checks
-
) : (
{
},
}}
>
-
{
transition: "height 600ms cubic-bezier(0.4, 0, 0.2, 1)",
}}
/>
-
+
)
)}