Fixing messages
Some checks failed
Music Collection CI Workflow / test (./frontend) (push) Has been cancelled
Music Collection CI Workflow / build-and-push-images (./backend/Dockerfile, git.anatid.net/tabris/music-collection-backend, ./backend) (push) Has been cancelled
Music Collection CI Workflow / build-and-push-images (./frontend/Dockerfile, git.anatid.net/tabris/music-collection-frontend, ./frontend) (push) Has been cancelled
Music Collection CI Workflow / deploy (push) Has been cancelled
Music Collection CI Workflow / test (./backend) (push) Has been cancelled

This commit is contained in:
Phill Pover 2025-04-07 11:49:05 +01:00
parent 7530b2300c
commit 0108b27911

View File

@ -58,7 +58,7 @@ export default function Page() {
const result = await updateAlbum(formData)
.then(response => {
if (response.ok) {
return handleSnackbar(`Successfully updated Album with ID ${formData.get("id")}: ${result}`, true);
handleSnackbar(`Successfully updated Album with ID ${formData.get("id")}: ${result}`, true);
}
Promise.reject(response);
})