This commit is contained in:
Kenneth Jannette
2024-02-08 02:19:22 -06:00
parent 2c596324fd
commit 5104fd67f7
3 changed files with 70 additions and 2 deletions

View File

@@ -72,7 +72,7 @@ const UploadModal = (props) => {
async function uploadFile(file) {
try {
const response = await fetch(`${apiUrl}/parseNewDoc`, {
const response = await fetch(`${apiUrl}/v1/parseNewDoc`, {
method: "POST",
body: file,
});