diff --git a/CHANGELOG.md b/CHANGELOG.md index 3a30a5f284..2f713a54e6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,10 @@ ### 🐛 Bug Fixes +- **fix(providers):** strip OpenAI-specific fields in Kiro translator to prevent 400 errors (#2037) +- **fix(ui):** resolve text contrast issues for zero-config warning banner in light mode (#2050) +- **fix(core):** inject global system prompt correctly into downstream chat completions pipeline (#2080) +- **fix(routing):** add missing v1beta rewrites to next.config to resolve 404 on Gemini models endpoint (#2102) - **fix(cache):** optimize cache_control preservation logic and explicitly align tool schema with upstream Claude Code expectations - **fix(db):** preserve legacy SQLite database path on Windows to prevent data loss (#1973) - **fix(settings):** resolve model alias persistence double stringification preventing UI updates (#2018) diff --git a/src/app/(dashboard)/dashboard/BootstrapBanner.tsx b/src/app/(dashboard)/dashboard/BootstrapBanner.tsx index 87df344935..f0300ea364 100644 --- a/src/app/(dashboard)/dashboard/BootstrapBanner.tsx +++ b/src/app/(dashboard)/dashboard/BootstrapBanner.tsx @@ -20,17 +20,24 @@ export default function BootstrapBanner() { return (
Running in zero-config mode
-+
+ Running in zero-config mode +
+
OmniRoute auto-generated secure encryption keys on first launch. They are persisted to{" "}
- {dataDir}. No
- action is required — your data is encrypted and safe. To use custom keys, add{" "}
- JWT_SECRET and{" "}
-
+
+ {dataDir}
+
+ . No action is required — your data is encrypted and safe. To use custom keys, add{" "}
+
+ JWT_SECRET
+ {" "}
+ and{" "}
+
STORAGE_ENCRYPTION_KEY
{" "}
to that file.
@@ -38,7 +45,7 @@ export default function BootstrapBanner() {