refactor(compose): change error message

This commit is contained in:
Mauricio Siu 2024-06-30 00:42:00 -06:00
parent 889e72d21e
commit f64392469d

View File

@ -62,11 +62,11 @@ export const StopCompose = ({ composeId }: Props) => {
toast.success("Compose rebuild succesfully");
})
.catch(() => {
toast.error("Error to rebuild the compose");
toast.error("Error to stop the compose");
});
})
.catch(() => {
toast.error("Error to rebuild the compose");
toast.error("Error to stop the compose");
});
}}
>