generated from nhcarrigan/template
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:
@@ -28,6 +28,7 @@ pub struct ClaudeStartOptions {
|
||||
}
|
||||
|
||||
#[derive(Debug, Clone, Serialize, Deserialize)]
|
||||
#[serde(default)]
|
||||
pub struct HikariConfig {
|
||||
#[serde(default)]
|
||||
pub model: Option<String>,
|
||||
|
||||
Reference in New Issue
Block a user