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 9540747 commit aeada28Copy full SHA for aeada28
packages/next/src/next-devtools/dev-overlay/shared.ts
@@ -213,7 +213,9 @@ export const INITIAL_OVERLAY_STATE: Omit<
213
versionInfo: { installed: '0.0.0', staleness: 'unknown' },
214
debugInfo: { devtoolsFrontendUrl: undefined },
215
isDevToolsPanelOpen: false,
216
- indicatorPosition: 'bottom-left',
+ indicatorPosition:
217
+ (localStorage.getItem(STORAGE_KEY_POSITION) as DevToolsIndicatorPosition) ??
218
+ 'bottom-left',
219
}
220
221
function getInitialState(
0 commit comments