From e79525c40cfa29508258282666396086d12b486d Mon Sep 17 00:00:00 2001 From: psychedelicious <4822129+psychedelicious@users.noreply.github.com> Date: Tue, 8 Jul 2025 06:08:30 +1000 Subject: [PATCH] docs(ui): update comments --- invokeai/frontend/web/src/app/hooks/useStudioInitAction.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/invokeai/frontend/web/src/app/hooks/useStudioInitAction.ts b/invokeai/frontend/web/src/app/hooks/useStudioInitAction.ts index 162dec76b0..447e160f58 100644 --- a/invokeai/frontend/web/src/app/hooks/useStudioInitAction.ts +++ b/invokeai/frontend/web/src/app/hooks/useStudioInitAction.ts @@ -162,13 +162,13 @@ export const useStudioInitAction = (action?: StudioInitAction) => { async (destination: StudioDestinationAction['data']['destination']) => { switch (destination) { case 'generation': - // Go to the canvas tab, open the image viewer, and enable send-to-gallery mode + // Go to the generate tab, open the launchpad await navigationApi.focusPanel('generate', LAUNCHPAD_PANEL_ID); store.dispatch(paramsReset()); store.dispatch(activeTabCanvasRightPanelChanged('gallery')); break; case 'canvas': - // Go to the canvas tab, close the image viewer, and disable send-to-gallery mode + // Go to the canvas tab, open the launchpad await navigationApi.focusPanel('canvas', WORKSPACE_PANEL_ID); store.dispatch(canvasReset()); break;