fix(LineChart): remove unused fillWidth prop

This commit is contained in:
Demenech
2024-04-09 17:45:12 -03:00
parent 2ea185b710
commit df9664624f
2 changed files with 1 additions and 6 deletions

View File

@@ -20,7 +20,6 @@ export type LineChartProps = {
export function LineChart({
data,
fullWidth = false,
title = '',
xAxis,
xAxisType = 'temporal',
@@ -89,6 +88,6 @@ export function LineChart({
<LoadingSpinner />
</div>
) : (
<VegaLite fullWidth={fullWidth} data={vegaData} spec={spec} />
<VegaLite data={vegaData} spec={spec} />
);
}