Fix darkmode styles on github login (vibe-kanban) (#483)
* Commit changes from coding agent for task attempt 5d30a58f-203e-46c9-b3cd-084b59d932fb * Cleanup script changes for task attempt 5d30a58f-203e-46c9-b3cd-084b59d932fb
This commit is contained in:
committed by
GitHub
parent
5c7f52bcfd
commit
1cc551bbf3
@@ -65,12 +65,11 @@ impl CodingAgent {
|
||||
ProfileConfigs::get_cached().get_profile(&profile_variant_label.profile)
|
||||
{
|
||||
if let Some(variant_name) = &profile_variant_label.variant {
|
||||
if let Some(variant) = profile_config.get_variant(&variant_name) {
|
||||
if let Some(variant) = profile_config.get_variant(variant_name) {
|
||||
Ok(variant.agent.clone())
|
||||
} else {
|
||||
Err(ExecutorError::UnknownExecutorType(format!(
|
||||
"Unknown mode: {}",
|
||||
variant_name
|
||||
"Unknown mode: {variant_name}"
|
||||
)))
|
||||
}
|
||||
} else {
|
||||
|
||||
@@ -270,7 +270,7 @@ mod tests {
|
||||
crate::executors::CodingAgent::ClaudeCode(claude) => {
|
||||
assert_eq!(claude.command.base, "npx claude");
|
||||
assert_eq!(claude.command.params.as_ref().unwrap()[0], "--test");
|
||||
assert_eq!(claude.plan, true);
|
||||
assert!(claude.plan);
|
||||
}
|
||||
_ => panic!("Expected ClaudeCode agent"),
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user