From f8447d923eadcb4204b478039d2e86e393c7cb09 Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Tue, 9 Dec 2025 16:22:03 +0200 Subject: [PATCH] feat(ribbon): hide when in options --- apps/client/src/widgets/ribbon/Ribbon.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/apps/client/src/widgets/ribbon/Ribbon.tsx b/apps/client/src/widgets/ribbon/Ribbon.tsx index 55ade760c..ee3fd3fcf 100644 --- a/apps/client/src/widgets/ribbon/Ribbon.tsx +++ b/apps/client/src/widgets/ribbon/Ribbon.tsx @@ -73,10 +73,11 @@ export default function Ribbon() { } }, [ computedTabs, activeTabIndex ])); + const shouldShowRibbon = (noteContext?.viewScope?.viewMode === "default" && !noteContext.noteId?.startsWith("_options")); return (