diff --git a/invokeai/frontend/web/src/features/ui/components/InvokeTabs.tsx b/invokeai/frontend/web/src/features/ui/components/InvokeTabs.tsx
index fb16969319..740c71edfd 100644
--- a/invokeai/frontend/web/src/features/ui/components/InvokeTabs.tsx
+++ b/invokeai/frontend/web/src/features/ui/components/InvokeTabs.tsx
@@ -6,6 +6,7 @@ import {
TabPanels,
Tabs,
Tooltip,
+ VisuallyHidden,
} from '@chakra-ui/react';
import { RootState } from 'app/store';
import { useAppDispatch, useAppSelector } from 'app/storeHooks';
@@ -164,7 +165,12 @@ export default function InvokeTabs() {
label={tabDict[key as keyof typeof tabDict].tooltip}
placement="end"
>
- {tabDict[key as keyof typeof tabDict].title}
+
+
+ {tabDict[key as keyof typeof tabDict].tooltip}
+
+ {tabDict[key as keyof typeof tabDict].title}
+
);
});