From 06fe200e33d81517816128f811a2c681f423aa03 Mon Sep 17 00:00:00 2001 From: Pyry Koivisto Date: Tue, 10 Sep 2024 15:04:59 +0300 Subject: [PATCH] VKT(Frontend): Fiddle with comment to force CI run [deploy] --- frontend/packages/vkt/src/redux/sagas/publicFileUpload.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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}`); }