diff --git a/packages/dnb-design-system-portal/src/shared/tags/Tabbar.tsx b/packages/dnb-design-system-portal/src/shared/tags/Tabbar.tsx index 80b16689d8e..c7a365e8694 100644 --- a/packages/dnb-design-system-portal/src/shared/tags/Tabbar.tsx +++ b/packages/dnb-design-system-portal/src/shared/tags/Tabbar.tsx @@ -77,8 +77,6 @@ export default function Tabbar({ ({ title }) => !hideTabs?.find(({ title: t }) => t === title), ) .map(({ key, ...rest }) => { - console.log('-------------------') - console.log('key', key) const search = cleanFullscreen(location.search) key = [ rootPath, @@ -88,10 +86,6 @@ export default function Tabbar({ location.hash, ].join('') - // console.log('to', to) - console.log('rootPath', rootPath) - console.log('to', key) - return { ...rest, key, to: key } }) )