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