quick fix for location error (#492)
This commit is contained in:
parent
f372520016
commit
5a9961f608
1 changed files with 2 additions and 1 deletions
|
@ -65,7 +65,8 @@ export default function Type(props: InferGetServerSidePropsType<typeof getServer
|
||||||
shallow: true,
|
shallow: true,
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
}, [router, selectedDate]);
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
||||||
|
}, [selectedDate]);
|
||||||
|
|
||||||
const handleSelectTimeZone = (selectedTimeZone: string): void => {
|
const handleSelectTimeZone = (selectedTimeZone: string): void => {
|
||||||
if (selectedDate) {
|
if (selectedDate) {
|
||||||
|
|
Loading…
Reference in a new issue