diff --git a/frontend/src/controllers/base-controller.ts b/frontend/src/controllers/base-controller.ts index 9592c00b..72d71819 100644 --- a/frontend/src/controllers/base-controller.ts +++ b/frontend/src/controllers/base-controller.ts @@ -11,7 +11,7 @@ export abstract class BaseController { private static assertSuccessResponse(response: AxiosResponse): void { if (response.status / 100 !== 2) { - //throw new HttpErrorResponseException(response); + throw new HttpErrorResponseException(response); } }