{
diff --git a/src/dashboardWebView/components/Header/Tab.tsx b/src/dashboardWebView/components/Header/Tab.tsx
index 214115e5..ae9185a2 100644
--- a/src/dashboardWebView/components/Header/Tab.tsx
+++ b/src/dashboardWebView/components/Header/Tab.tsx
@@ -1,6 +1,7 @@
import * as React from 'react';
import { useLocation } from 'react-router-dom';
import { NavigationType } from '../../models';
+import { cn } from '../../../utils/cn';
export interface ITabProps {
navigationType: NavigationType;
@@ -14,13 +15,15 @@ export const Tab: React.FunctionComponent
= ({
}: React.PropsWithChildren) => {
const location = useLocation();
+ console.log(location.pathname, navigationType);
+
return (