diff --git a/internal/authentication/handler.go b/internal/authentication/handler.go index f4dde7e..a3083f2 100644 --- a/internal/authentication/handler.go +++ b/internal/authentication/handler.go @@ -79,7 +79,7 @@ func (handler HandlerImpl) handleSignIn() http.HandlerFunc { return func(w http.ResponseWriter, r *http.Request) { core.UpdateSpan(r) - user, err := utils.WaitMinimumTime(securityWaitDuration, func() (*types.User, error) { + user, err := utils.WaitMinimumTime(securityWaitDuration, func() (*User, error) { session := core.GetSession(r) email := r.FormValue("email") password := r.FormValue("password")