From 2f4117d77a546a0cc18fe94f522a247c19f99539 Mon Sep 17 00:00:00 2001 From: Joyelle Ndagijimana Date: Fri, 18 Apr 2025 17:07:48 +0200 Subject: [PATCH] feat(frontend): kleine correctie voor merge --- frontend/src/controllers/base-controller.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } }