fix: resolve critical runtime errors blocking permission modal

This fixes two severe bugs:
1. Missing debugConsoleStore import causing undefined variable errors
2. Replace non-existent .log() method with console.log()
3. Add #[serde(default)] to HikariConfig to handle missing fields gracefully

The undefined variable was causing initialization to fail, which prevented
the permission modal from displaying properly.
This commit is contained in:
2026-02-06 22:36:00 -08:00
committed by Naomi Carrigan
parent 1d94bdfbb0
commit d16644a1d6
2 changed files with 7 additions and 0 deletions
+1
View File
@@ -28,6 +28,7 @@ pub struct ClaudeStartOptions {
}
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(default)]
pub struct HikariConfig {
#[serde(default)]
pub model: Option<String>,