()
| 40 | export const STORAGE_AI_MODEL_KEY = "next-ai-draw-io-ai-model" |
| 41 | |
| 42 | function getStoredAccessCodeRequired(): boolean | null { |
| 43 | if (typeof window === "undefined") return null |
| 44 | const stored = localStorage.getItem(STORAGE_ACCESS_CODE_REQUIRED_KEY) |
| 45 | if (stored === null) return null |
| 46 | return stored === "true" |
| 47 | } |
| 48 | |
| 49 | export function SettingsDialog({ |
| 50 | open, |