After using the login page, expected: `"Hello <email>"` actual: `"Hello <base64 token>"` The login action calls `.MarkUserAsAuthenticated(result.Token);` but that methods expects an email, not a token. workaround: pass in `loginModel.Email`
After using the login page,
expected:
"Hello <email>"actual:
"Hello <base64 token>"The login action calls
.MarkUserAsAuthenticated(result.Token);but that methods expects an email, not a token.
workaround: pass in
loginModel.Email