1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

Fix root path warnings

This commit is contained in:
Bill Thornton 2023-06-07 17:11:27 -04:00
parent 33102149c2
commit 186dd44da6
3 changed files with 4 additions and 13 deletions

View file

@ -80,9 +80,6 @@ const AppDrawer: FC<ResponsiveDrawerProps> = ({
/>
))
}
{/* Suppress warnings for unhandled routes */}
<Route path='*' element={null} />
</Routes>
);

View file

@ -83,9 +83,6 @@ const AppTabs: FC<AppTabsParams> = ({
/>
))
}
{/* Suppress warnings for unhandled routes */}
<Route path='*' element={null} />
</Routes>
);
};