diff --git a/interface/src/components/routing/RouterTabs.tsx b/interface/src/components/routing/RouterTabs.tsx index be9f44905..abf2dda27 100644 --- a/interface/src/components/routing/RouterTabs.tsx +++ b/interface/src/components/routing/RouterTabs.tsx @@ -16,7 +16,7 @@ const RouterTabs: FC = ({ value, children }) => { const smallDown = useMediaQuery(theme.breakpoints.down('sm')); const handleTabChange = (_event: unknown, path: string) => { - navigate(path); + void navigate(path); }; return (