From 4e4c048f8438167680e4fa833571bafc127cbcdd Mon Sep 17 00:00:00 2001 From: Phill Pover Date: Mon, 7 Apr 2025 11:49:22 +0100 Subject: [PATCH] Fixing messages --- frontend/src/app/album/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/app/album/page.tsx b/frontend/src/app/album/page.tsx index 2c92e4a..773a9e6 100644 --- a/frontend/src/app/album/page.tsx +++ b/frontend/src/app/album/page.tsx @@ -53,7 +53,7 @@ export default function Page() { } Promise.reject(response); }) - .catch(error => {handleSnackbar(`Failed to create Album with ID ${formData.get("id")}: ${result}`, true);}); + .catch(error => {handleSnackbar(`Failed to create Album with ID ${formData.get("id")}: ${result}`, false);}); } else { const result = await updateAlbum(formData) .then(response => {