Skip to content

Commit

Permalink
fix: linting errors
Browse files Browse the repository at this point in the history
  • Loading branch information
XxThunderBlastxX committed Aug 18, 2024
1 parent 3beaa9b commit e1e881d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions internal/handler/auth_handler.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,10 @@ type AuthHandler interface {
LogoutCallbackHandler() fiber.Handler
}

func NewAuthHandler(sess *session.Session, auth *auth.Authenticator, authAudience, authCookieKey string) AuthHandler {
func NewAuthHandler(sess *session.Session, authenticator *auth.Authenticator, authAudience, authCookieKey string) AuthHandler {
return &authHandler{
session: sess,
auth: auth,
auth: authenticator,
authCookieKey: authCookieKey,
authCodeOptions: oauth2.SetAuthURLParam("audience", authAudience),
}
Expand Down

0 comments on commit e1e881d

Please sign in to comment.