fix: implement feedback

This commit is contained in:
Mythie
2023-09-14 13:21:03 +10:00
parent 5a99a0b5eb
commit 0835da45ef
9 changed files with 48 additions and 34 deletions

View File

@ -38,7 +38,7 @@ const putFileInS3 = async (file: File) => {
const body = await file.arrayBuffer();
await fetch(url, {
const reponse = await fetch(url, {
method: 'PUT',
headers: {
'Content-Type': 'application/octet-stream',
@ -46,6 +46,12 @@ const putFileInS3 = async (file: File) => {
body,
});
if (!reponse.ok) {
throw new Error(
`Failed to upload file "${file.name}", failed with status code ${reponse.status}`,
);
}
return {
type: DocumentDataType.S3_PATH,
data: key,