From 66773257d6de8cc70e69ac20e662c6e7f34cd8b4 Mon Sep 17 00:00:00 2001 From: Phill Pover Date: Sun, 6 Apr 2025 18:15:01 +0100 Subject: [PATCH] Fixing form submission --- 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 0c876a1..a6f78a1 100644 --- a/frontend/src/app/album/page.tsx +++ b/frontend/src/app/album/page.tsx @@ -30,7 +30,7 @@ export default function Page() { const response = await createAlbum(formData); await response.json(); - setShow(false); + handleClose(); } if (!albums) return
Loading...