const formData = new FormData(e.target as HTMLFormElement);fetch('http://localhost:8000/playlist/create', { method: 'POST', headers: { 'Content-Type': 'multipart/form-data' }, body: formData, credentials: 'include',}).then((v) => { console.log(v);});
TypeError: Failed to parse body as FormData. at node:internal/deps/undici/undici:5675:27 at successSteps (node:internal/deps/undici/undici:5719:27) at fullyReadBody (node:internal/deps/undici/undici:4609:9)...