Spelling and grammar corrections

This commit is contained in:
Dom
2024-12-29 22:34:57 +10:00
parent ba45b27608
commit 2af8d6f565
208 changed files with 397 additions and 397 deletions

View File

@@ -75,13 +75,13 @@ export const UpdateMysql = ({ mysqlId }: Props) => {
description: formData.description || "",
})
.then(() => {
toast.success("MySQL updated succesfully");
toast.success("MySQL updated successfully");
utils.mysql.one.invalidate({
mysqlId: mysqlId,
});
})
.catch(() => {
toast.error("Error to update the MySQL");
toast.error("Error updating MySQL");
})
.finally(() => {});
};