Skip to content

Commit

Permalink
Avoid any cast
Browse files Browse the repository at this point in the history
  • Loading branch information
LukasTy committed Aug 14, 2024
1 parent 0b735eb commit 0996edf
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { styled } from '@mui/material/styles';
import Card from '@mui/material/Card';
import Paper from '@mui/material/Paper';
import Typography from '@mui/material/Typography';
import { StaticTimePicker } from '@mui/x-date-pickers/StaticTimePicker';
import { StaticTimePicker, StaticTimePickerProps } from '@mui/x-date-pickers/StaticTimePicker';
import {
PickersLayoutProps,
usePickerLayout,
Expand Down Expand Up @@ -57,7 +57,7 @@ export default function DigitalClock() {
hours: renderMultiSectionDigitalClockTimeView,
minutes: renderMultiSectionDigitalClockTimeView,
meridiem: renderMultiSectionDigitalClockTimeView,
} as any
} as StaticTimePickerProps<Dayjs>['viewRenderers']
}
/>
</Paper>
Expand Down

0 comments on commit 0996edf

Please sign in to comment.