From c660b3dc9b6d1503d3f7b6cc63e63de9d5dfbe7d Mon Sep 17 00:00:00 2001 From: Neyl-123 <97339070+Neyl-123@users.noreply.github.com> Date: Thu, 7 May 2026 16:08:43 +0200 Subject: [PATCH] Keep the NavBar while pinned The NavBar already gets hidden while pinned, no need to remove it from the DOM. Keeping it ensures the MainView stays in the same position (and does not move up a bit when pinned) making it a more consistent experience for the user. --- apps/desktop/src/App.tsx | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/apps/desktop/src/App.tsx b/apps/desktop/src/App.tsx index b95c2aa4..d1862215 100644 --- a/apps/desktop/src/App.tsx +++ b/apps/desktop/src/App.tsx @@ -38,14 +38,12 @@ function App() { pin ? null : "border border-zinc-600" )} > - {!pin && ( - - )} +