fix: add beta_mode property to SystemConfig interface

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
icy
2025-11-02 06:31:51 +08:00
parent b8c3488e1f
commit 8069e7f0c5

View File

@@ -1,5 +1,6 @@
export interface SystemConfig {
admin_mode: boolean;
beta_mode: boolean;
}
let configPromise: Promise<SystemConfig> | null = null;