Skip to content

Commit 84750fd

Browse files
author
Jeff_Lin
committed
Modify main
1 parent 7ae8f78 commit 84750fd

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
@@ -27,7 +27,7 @@ public AuthController(IAuthAppService service)
2727
public async Task<IActionResult> Login([FromBody] AuthRequest req)
2828
{
2929
var token = await _service.LoginAsync(req.Email, req.Password);
30-
if (token == null) return Unauthorized(new { message = "Invalid credentials" });
30+
if (token == null) return Unauthorized(new { message = "Invalid credentials" });
3131
return Ok(new { token });
3232
}
3333
}

0 commit comments

Comments
 (0)