Skip to content

Commit

Permalink
minor fix: address small ellipsis feedback (#362)
Browse files Browse the repository at this point in the history
  • Loading branch information
dinmukhamedm authored Feb 2, 2025
1 parent 8a1eca2 commit a68ef49
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app-server/src/api/v1/evals.rs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ pub async fn init_eval(
project_api_key: ProjectApiKey,
) -> ResponseResult {
let req = req.into_inner();
let group_name = req.group_name.unwrap_or_else(|| "default".to_string());
let group_name = req.group_name.unwrap_or("default".to_string());
let project_id = project_api_key.project_id;

let name = if let Some(name) = req.name {
Expand Down

0 comments on commit a68ef49

Please sign in to comment.