Skip to content

Commit

Permalink
feat: Create Experiments From Overrides
Browse files Browse the repository at this point in the history
  • Loading branch information
yuvrajjsingh0 committed Feb 25, 2025
1 parent b393884 commit 7f191b2
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion crates/frontend/src/components/experiment_form.rs
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,9 @@ where

match result {
Ok(res) => {
handle_submit_clone(res["experiment_id"].as_str().unwrap_or("").to_string());
handle_submit_clone(
res["experiment_id"].as_str().unwrap_or("").to_string(),
);
let success_message = if edit {
"Experiment updated successfully!"
} else {
Expand Down

0 comments on commit 7f191b2

Please sign in to comment.