From 2a3ab4228f43461a3fa438444e4440b63ca31db2 Mon Sep 17 00:00:00 2001 From: marcos-silva-rodrigues Date: Wed, 3 Sep 2025 16:25:46 -0300 Subject: [PATCH] FIX: infinite loading when login is incorrect --- src/modules/auth/auth.controller.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/modules/auth/auth.controller.ts b/src/modules/auth/auth.controller.ts index d32a2d7..e391a3e 100644 --- a/src/modules/auth/auth.controller.ts +++ b/src/modules/auth/auth.controller.ts @@ -114,6 +114,7 @@ export class AuthController { return res.send(data); } catch (error) { this.logger.error('/auth - SignIn - ERROR', error); + throw error; } }