We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7b25b93 commit c7583a2Copy full SHA for c7583a2
src/lib/tabs/useRouterTabs.tsx
@@ -63,7 +63,8 @@ export const useRouterTabs = <
63
getUiModelKey,
64
} = options;
65
66
- const getTabKey = (match: DataRouteMatch) => match.pathname;
+ const getTabKey = (match: DataRouteMatch) =>
67
+ normalizePathname(match.pathname);
68
69
const isOpenFor = useCallback(
70
(match: DataRouteMatch) => (path: string) => {
0 commit comments