Fixes infinite loop

This commit is contained in:
zomars 2022-05-17 10:52:45 -06:00 committed by Joe Au-Yeung
parent 3a4813e4b0
commit e4397a2fe1

View File

@ -200,7 +200,8 @@ export default function Success(props: SuccessProps) {
});
setDate(date.tz(localStorage.getItem("timeOption.preferredTimeZone") || dayjs.tz.guess()));
setIs24h(!!localStorage.getItem("timeOption.is24hClock"));
}, [date, eventType, needsConfirmation]);
// eslint-disable-next-line react-hooks/exhaustive-deps
}, [eventType, needsConfirmation]);
function eventLink(): string {
const optional: { location?: string } = {};