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

@@ -103,7 +103,7 @@ export const AddRegistry = () => {
setIsOpen(false);
})
.catch(() => {
toast.error("Error to add a registry");
toast.error("Error adding a registry");
});
};
@@ -290,7 +290,7 @@ export const AddRegistry = () => {
}
})
.catch(() => {
toast.error("Error to test the registry");
toast.error("Error testing the registry");
});
}}
>

View File

@@ -48,7 +48,7 @@ export const DeleteRegistry = ({ registryId }: Props) => {
toast.success("Registry deleted");
})
.catch(() => {
toast.error("Error to delete the registry");
toast.error("Error deleting the registry");
});
}}
>

View File

@@ -122,7 +122,7 @@ export const UpdateDockerRegistry = ({ registryId }: Props) => {
await utils.registry.all.invalidate();
})
.catch(() => {
toast.error("Error to update the registry");
toast.error("Error updating the registry");
});
};
return (
@@ -303,7 +303,7 @@ export const UpdateDockerRegistry = ({ registryId }: Props) => {
}
})
.catch(() => {
toast.error("Error to test the registry");
toast.error("Error testing the registry");
});
}}
>