diff --git a/frontend/src/Calendar/iCal/CalendarLinkModalContent.tsx b/frontend/src/Calendar/iCal/CalendarLinkModalContent.tsx index aa90db301..b8c32cb60 100644 --- a/frontend/src/Calendar/iCal/CalendarLinkModalContent.tsx +++ b/frontend/src/Calendar/iCal/CalendarLinkModalContent.tsx @@ -22,7 +22,12 @@ interface CalendarLinkModalContentProps { function CalendarLinkModalContent({ onModalClose, }: CalendarLinkModalContentProps) { - const [state, setState] = useState({ + const [state, setState] = useState<{ + unmonitored: boolean; + premieresOnly: boolean; + asAllDay: boolean; + tags: number[]; + }>({ unmonitored: false, premieresOnly: false, asAllDay: false,