{name}
{' '}
diff --git a/src/Components/Charts/ChartWrapper.tsx b/src/Components/Charts/ChartWrapper.tsx
index abe3f26..708f6d3 100644
--- a/src/Components/Charts/ChartWrapper.tsx
+++ b/src/Components/Charts/ChartWrapper.tsx
@@ -2,14 +2,15 @@ import React, { ForwardedRef, forwardRef, ReactNode } from 'react';
import { CHART_WRAPPER_STYLE } from '../../constants/chartConstants';
interface ChartWrapperProps {
+ responsive: boolean;
children: ReactNode;
}
-const ChartWrapper = forwardRef(({children}: ChartWrapperProps, ref: ForwardedRef