diff --git a/Cargo.lock b/Cargo.lock
index a5c9ab32a..6f7088a03 100644
Binary files a/Cargo.lock and b/Cargo.lock differ
diff --git a/interface/app/$libraryId/Layout/index.tsx b/interface/app/$libraryId/Layout/index.tsx
index 26cb3ec4c..86cd14fc6 100644
--- a/interface/app/$libraryId/Layout/index.tsx
+++ b/interface/app/$libraryId/Layout/index.tsx
@@ -76,7 +76,7 @@ const Layout = () => {
else return ;
}
- const macOSFullscreen = os === 'macOS' && windowState.isFullScreen;
+ const macOSFullscreen = os === 'macOS' && !windowState.isFullScreen;
return (
@@ -86,7 +86,7 @@ const Layout = () => {
// App level styles
'flex h-screen cursor-default select-none overflow-hidden text-ink',
os === 'macOS' && 'has-blur-effects',
- !macOSFullscreen && 'rounded-[10px]',
+ macOSFullscreen && 'rounded-[10px]',
os !== 'browser' &&
os !== 'windows' &&
!macOSFullscreen &&