Skip to content

Commit

Permalink
Update toast error when workflow name contains space
Browse files Browse the repository at this point in the history
  • Loading branch information
Xh4H authored and danielgrittner committed Sep 19, 2024
1 parent 7519651 commit e307485
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ export default function SaveWorkflowButton() {
return;
}
if (workflow.workflowName.includes(SPACE)) {
errorToast("Workflow name must contain empty spaces.");
errorToast("Workflow name must not contain empty spaces.");
return;
}
saveWorkflow.mutate(workflow);
Expand Down

0 comments on commit e307485

Please sign in to comment.