Skip to content

Commit 0e1cc12

Browse files
author
Jeff_Lin
committed
merge dev
2 parents 6e7d749 + f713f59 commit 0e1cc12

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Backend.Api/Controllers/AuthController.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ public class AuthController(IAuthAppService service) : ControllerBase
2020
public async Task<IActionResult> Login([FromBody] AuthRequest req)
2121
{
2222
var token = await service.LoginAsync(req.Email, req.Password);
23-
if (token == null) return Unauthorized(new { message = "Invalid credentials" });
23+
if (token == null) return Unauthorized(new { message = "Invalid credentials" });
2424
return Ok(new { token });
2525
}
2626
}

0 commit comments

Comments
 (0)