missing "/" added

deployment_final
s8613 2025-07-02 16:12:46 +02:00
parent 7da4c51a89
commit 5b36ce43a9
1 changed files with 1 additions and 1 deletions

View File

@ -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,
});