diff --git a/invokeai/frontend/web/src/features/gallery/components/ImageViewer/EditorButton.tsx b/invokeai/frontend/web/src/features/gallery/components/ImageViewer/EditorButton.tsx index d6cbfbb124..2e10d057f8 100644 --- a/invokeai/frontend/web/src/features/gallery/components/ImageViewer/EditorButton.tsx +++ b/invokeai/frontend/web/src/features/gallery/components/ImageViewer/EditorButton.tsx @@ -7,7 +7,7 @@ import { useTranslation } from 'react-i18next'; import { useImageViewer } from './useImageViewer'; -export const TAB_NAME_TO_TKEY: Record = { +const TAB_NAME_TO_TKEY: Record = { generation: 'ui.tabs.generationTab', canvas: 'ui.tabs.canvasTab', workflows: 'ui.tabs.workflowsTab', @@ -15,7 +15,7 @@ export const TAB_NAME_TO_TKEY: Record = { queue: 'ui.tabs.queueTab', }; -export const TAB_NAME_TO_TKEY_SHORT: Record = { +const TAB_NAME_TO_TKEY_SHORT: Record = { generation: 'ui.tabs.generation', canvas: 'ui.tabs.canvas', workflows: 'ui.tabs.workflows',