Update message

This commit is contained in:
Nicolas Mowen 2024-05-03 07:58:55 -06:00
parent 0985504c29
commit 4036c9c652

View File

@ -203,11 +203,11 @@ export default function EventView({
) )
.then((resp) => { .then((resp) => {
if (resp.status == 200) { if (resp.status == 200) {
toast.success("Successfully started export", { toast.success("Export in progress.", {
position: "top-center", position: "top-center",
}); });
} else { } else {
toast.error("Failed to start export", { position: "top-center" }); toast.error("Failed to start export.", { position: "top-center" });
} }
}); });
}, },