Skip to content

Commit

Permalink
fix(time-slider): fix responsive grid default param #1494
Browse files Browse the repository at this point in the history
  • Loading branch information
kaminderpal committed Nov 16, 2023
1 parent 5698db5 commit e12fc04
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ interface ResponsiveGridProps extends GridProps {
interface ResponsiveGridPanelProps extends GridProps {
children: ReactNode;
isLayersPanelVisible: boolean;
sxProps?: SxProps;
sxProps?: SxProps | undefined;

Check failure on line 12 in packages/geoview-core/src/core/components/common/responsive-grid.tsx

View workflow job for this annotation

GitHub Actions / Build demo files / build-geoview

propType "sxProps" is not required, but has no corresponding defaultProps declaration

Check failure on line 12 in packages/geoview-core/src/core/components/common/responsive-grid.tsx

View workflow job for this annotation

GitHub Actions / Build demo files / build-geoview

propType "sxProps" is not required, but has no corresponding defaultProps declaration
}

/**
Expand Down

0 comments on commit e12fc04

Please sign in to comment.