diff --git a/frontend/packages/vkt/src/redux/sagas/publicFileUpload.ts b/frontend/packages/vkt/src/redux/sagas/publicFileUpload.ts index ae869e6cc..156784e81 100644 --- a/frontend/packages/vkt/src/redux/sagas/publicFileUpload.ts +++ b/frontend/packages/vkt/src/redux/sagas/publicFileUpload.ts @@ -87,7 +87,7 @@ function* startFileUploadSaga( }); if (!response.ok) { // Unlike axios, fetch doesn't throw but on error but instead returns an error response. - // We should therefore explicitly throw here to ensure the execution is transferred + // We therefore make a point of throwing here to ensure the execution is transferred // to the error handler. throw new Error(`POSTing to s3 failed, status: ${response.status}`); }