diff --git a/src-tauri/src/services/provider.rs b/src-tauri/src/services/provider.rs index dccfb84..1ceaf28 100644 --- a/src-tauri/src/services/provider.rs +++ b/src-tauri/src/services/provider.rs @@ -532,12 +532,13 @@ impl ProviderService { } }; - let provider = Provider::with_id( + let mut provider = Provider::with_id( "default".to_string(), "default".to_string(), settings_config, None, ); + provider.category = Some("custom".to_string()); { let mut config = state.config.write().map_err(AppError::from)?;