feat(frontend): kleine correctie voor merge

This commit is contained in:
Joyelle Ndagijimana 2025-04-18 17:07:48 +02:00
parent 488b132479
commit 2f4117d77a

View file

@ -11,7 +11,7 @@ export abstract class BaseController {
private static assertSuccessResponse(response: AxiosResponse<unknown, unknown>): void {
if (response.status / 100 !== 2) {
//throw new HttpErrorResponseException(response);
throw new HttpErrorResponseException(response);
}
}