diff --git a/project/frontend/src/components/UploadPage.tsx b/project/frontend/src/components/UploadPage.tsx index 4c79be0..65450c3 100644 --- a/project/frontend/src/components/UploadPage.tsx +++ b/project/frontend/src/components/UploadPage.tsx @@ -19,7 +19,7 @@ export default function UploadPage() { const uploadFile = useCallback(async () => { const formData = new FormData(); formData.append("file", files[0]); - const response = await fetch(`${API_HOST}/api/pitch_book`, { + const response = await fetch(`${API_HOST}/api/pitch_book/`, { method: "POST", body: formData, });