Merge branch 'master' into dev

This commit is contained in:
Nicholas Tindle
2025-07-15 14:52:19 -05:00
2 changed files with 2 additions and 2 deletions

View File

@@ -839,7 +839,7 @@ export default class BackendAPI {
throw handleFetchError(response, errorData);
}
return await response.text();
return await response.json();
}
private async _makeServerFileUpload(

View File

@@ -302,5 +302,5 @@ export async function makeAuthenticatedFileUpload(
throw new ApiError(errorMessage, response.status, responseData);
}
return await response.text();
return await response.json();
}