Remove timeout

This commit is contained in:
Nicolas Mowen 2024-12-12 06:26:59 -07:00
parent 1a23fdeff2
commit 2715fcaf23

View File

@ -53,7 +53,6 @@ export default function Events() {
const startTime = resp.data.start_time - REVIEW_PADDING; const startTime = resp.data.start_time - REVIEW_PADDING;
const date = new Date(startTime * 1000); const date = new Date(startTime * 1000);
setTimeout(() => {
setReviewFilter({ setReviewFilter({
after: getBeginningOfDayTimestamp(date), after: getBeginningOfDayTimestamp(date),
before: getEndOfDayTimestamp(date), before: getEndOfDayTimestamp(date),
@ -66,7 +65,6 @@ export default function Events() {
}, },
true, true,
); );
}, 100);
} }
}) })
.catch(() => {}); .catch(() => {});