diff --git a/src/config_store.rs b/src/config_store.rs index 6c0f1b6..705f301 100644 --- a/src/config_store.rs +++ b/src/config_store.rs @@ -18,13 +18,13 @@ pub struct Store { #[serde(default)] pub meta: Meta, #[serde(default)] - pub accounts: Vec, - #[serde(default)] pub homes: Vec, #[serde(default)] pub server: ServerConfig, #[serde(default)] pub sync: SyncConfig, + #[serde(default)] + pub accounts: Vec, } #[derive(Debug, Clone, Serialize, Deserialize)] @@ -220,10 +220,10 @@ impl Store { fn with_default_home(codex_home: &Path) -> Self { let mut store = Self { meta: Meta::default(), - accounts: Vec::new(), homes: Vec::new(), server: ServerConfig::default(), sync: SyncConfig::default(), + accounts: Vec::new(), }; store.ensure_default_home(codex_home); store