From a2e318ecdbfef46c6352e749c2a0e327e022a47a Mon Sep 17 00:00:00 2001 From: Phill Pover Date: Mon, 7 Apr 2025 05:46:07 +0100 Subject: [PATCH] Fixes --- frontend/src/app/actions.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/app/actions.tsx b/frontend/src/app/actions.tsx index 1b8e16f..7c703a7 100644 --- a/frontend/src/app/actions.tsx +++ b/frontend/src/app/actions.tsx @@ -133,10 +133,10 @@ export async function createSong(formData: FormData) { method: "POST", headers: { "Content-Type": "application/json" }, body: JSON.stringify({ - albumId: albumId, title: title, duration: duration, trackNumber: trackNumber, + albumId: albumId, }) }).then(response => { if (response.ok) {