diff --git a/src/components/App.tsx b/src/components/App.tsx index 611ff47b..7f747dbd 100644 --- a/src/components/App.tsx +++ b/src/components/App.tsx @@ -330,6 +330,7 @@ import { activeConfirmDialogAtom } from "./ActiveConfirmDialog"; import { actionWrapTextInContainer } from "../actions/actionBoundText"; import BraveMeasureTextError from "./BraveMeasureTextError"; import { activeEyeDropperAtom } from "./EyeDropper"; +import { isSidebarDockedAtom } from "./Sidebar/Sidebar"; const AppContext = React.createContext(null!); const AppPropsContext = React.createContext(null!); @@ -473,8 +474,6 @@ class App extends React.Component { name, width: window.innerWidth, height: window.innerHeight, - showHyperlinkPopup: false, - defaultSidebarDockedPreference: false, }; this.id = nanoid(); @@ -2031,7 +2030,7 @@ class App extends React.Component { openSidebar: this.state.openSidebar && this.device.canDeviceFitSidebar && - this.state.defaultSidebarDockedPreference + jotaiStore.get(isSidebarDockedAtom) ? this.state.openSidebar : null, selectedElementIds: nextElementsToSelect.reduce(