Skip to content

Commit

Permalink
fixing type for isLarge property on Storage Chart
Browse files Browse the repository at this point in the history
  • Loading branch information
wkaspryk committed Mar 27, 2024
1 parent ea0915e commit 6531a02
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dashboard/src/components/dashboard/Dashboard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ export const Dashboard = () => {
);

const renderStorageTrendsChart = React.useCallback(
(isLarge: Boolean) => (
(isLarge: boolean | undefined) => (
<StorageTrendsChart
large={isLarge}
serverItems={dashboardServerItem ? [dashboardServerItem] : dashboardServerItems}
Expand Down

0 comments on commit 6531a02

Please sign in to comment.