Wrong mouse event

This commit is contained in:
David Baker 2023-09-19 18:36:51 +01:00
parent f33170f5f4
commit aab27ae616

View File

@ -43,7 +43,7 @@ export function GroupCallLoader({
const history = useHistory();
const onHomeClick = useCallback(
(ev: Event) => {
(ev: React.MouseEvent) => {
ev.preventDefault();
history.push("/");
},