diff --git a/apps/web/src/components/editor/action-bar.tsx b/apps/web/src/components/editor/action-bar.tsx index 5c522e17f..312d3562a 100644 --- a/apps/web/src/components/editor/action-bar.tsx +++ b/apps/web/src/components/editor/action-bar.tsx @@ -460,9 +460,11 @@ function Tab(props: TabProps) { height: "100%", cursor: "pointer", px: 2, - ":first-of-type": { - borderLeft: "1px solid var(--border)" - }, + ":first-of-type": window.hasNativeTitlebar + ? {} + : { + borderLeft: "1px solid var(--border)" + }, borderRight: "1px solid var(--border)", transform: CSS.Transform.toString(transform), diff --git a/apps/web/src/components/editor/index.tsx b/apps/web/src/components/editor/index.tsx index c7e50ac94..152c0dd89 100644 --- a/apps/web/src/components/editor/index.tsx +++ b/apps/web/src/components/editor/index.tsx @@ -75,7 +75,7 @@ import { Pane, SplitPane } from "../split-pane"; const PDFPreview = React.lazy(() => import("../pdf-preview")); -const autoSaveToast = { show: true, hide: () => { } }; +const autoSaveToast = { show: true, hide: () => {} }; async function saveContent( noteId: string, @@ -129,7 +129,7 @@ export default function TabsView() { {!hasNativeTitlebar ? ( ) : ( - + )} @@ -228,10 +228,10 @@ function EditorView({ session }: { session: - | DefaultEditorSession - | NewEditorSession - | ReadonlyEditorSession - | DeletedEditorSession; + | DefaultEditorSession + | NewEditorSession + | ReadonlyEditorSession + | DeletedEditorSession; }) { const lastChangedTime = useRef(0); const root = useRef(null);