From e7eab79a5a98e88c6b4aac5c1cb01faccc388910 Mon Sep 17 00:00:00 2001 From: Phill Pover Date: Sun, 6 Apr 2025 18:50:33 +0100 Subject: [PATCH] Fixing form submission --- frontend/src/app/album/page.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/src/app/album/page.tsx b/frontend/src/app/album/page.tsx index 2dad203..6205ce3 100644 --- a/frontend/src/app/album/page.tsx +++ b/frontend/src/app/album/page.tsx @@ -30,6 +30,7 @@ export default function Page() { try { const response = await createAlbum(formData); const data = response.json(); + console.log(data); handleClose(); } catch (error) { console.error('Error creating Album:', error);