Skip to content

Commit

Permalink
Remove hack, which didn't work 🙃
Browse files Browse the repository at this point in the history
  • Loading branch information
filiptronicek committed Nov 13, 2023
1 parent 5a4a5bc commit 5c7a74e
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,12 +45,11 @@ export const ConfigurationNameForm: FC<Props> = ({ configuration }) => {
{
onSuccess: () => {
toast(`Configuration name set to "${projectName}".`);
setProjectName(projectName);
},
},
);
},
[nameError.isValid, updateProject, configuration.id, projectName, toast, setProjectName],
[nameError.isValid, updateProject, configuration.id, projectName, toast],
);

return (
Expand Down

0 comments on commit 5c7a74e

Please sign in to comment.