Add onboarding flow for missing LLM key

This commit is contained in:
stefan-kp
2025-11-27 09:25:39 +01:00
parent 3afc75f78d
commit f7ee818360
3 changed files with 434 additions and 1 deletions
+1 -1
View File
@@ -27,7 +27,7 @@ export default function Home() {
// Check for API Key
const apiKey = localStorage.getItem("gemini_api_key");
if (!apiKey) {
router.push("/settings");
router.push("/onboarding");
return;
}