We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c9f558a commit 0628a22Copy full SHA for 0628a22
packages/next/src/next-devtools/dev-overlay/shared.ts
@@ -211,7 +211,9 @@ export const INITIAL_OVERLAY_STATE: Omit<
211
versionInfo: { installed: '0.0.0', staleness: 'unknown' },
212
debugInfo: { devtoolsFrontendUrl: undefined },
213
isDevToolsPanelOpen: false,
214
- indicatorPosition: 'bottom-left',
+ indicatorPosition:
215
+ (localStorage.getItem(STORAGE_KEY_POSITION) as DevToolsIndicatorPosition) ??
216
+ 'bottom-left',
217
}
218
219
function getInitialState(
0 commit comments