diff --git a/client/src/webpages/dashboard/components/TabBar.tsx b/client/src/webpages/dashboard/components/TabBar.tsx index 99c3feb32..8318dd3ea 100644 --- a/client/src/webpages/dashboard/components/TabBar.tsx +++ b/client/src/webpages/dashboard/components/TabBar.tsx @@ -35,6 +35,7 @@ export default function TabBar(props: { const tabButton = (
(props: {
); - return tooltip ? {tabButton} : tabButton; + return tooltip ? ( + + {tabButton} + + ) : ( + tabButton + ); }; return (