diff --git a/apps/client/src/widgets/launch_bar/GenericButtons.tsx b/apps/client/src/widgets/launch_bar/GenericButtons.tsx index 69982040f..70fe0fcce 100644 --- a/apps/client/src/widgets/launch_bar/GenericButtons.tsx +++ b/apps/client/src/widgets/launch_bar/GenericButtons.tsx @@ -30,7 +30,7 @@ export function CustomNoteLauncher({ launcherNote, getTargetNoteId, getHoistedNo const activate = !!evt.shiftKey; await appContext.tabManager.openInNewTab(targetNoteId, hoistedNoteIdWithDefault, activate); } else { - await appContext.tabManager.openInSameTab(targetNoteId); + await appContext.tabManager.openInSameTab(targetNoteId, hoistedNoteIdWithDefault); } }, [ launcherNote, getTargetNoteId, getHoistedNoteId ]);