Skip to content

Commit

Permalink
style: format
Browse files Browse the repository at this point in the history
  • Loading branch information
tdeshong committed Dec 3, 2024
1 parent 72b60b3 commit 5eb7291
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion app.go
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,6 @@ func New(appID string, config *Config) (*Passage, error) {
return nil, Error{Message: "failed to fetch jwks"}
}


app := &App{
ID: appID,
Config: config,
Expand Down
2 changes: 1 addition & 1 deletion auth.go
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ func (a *auth) ValidateJWT(authToken string) (string, error) {
return "", errors.New("failed to find sub claim in JWT")
}

audience, err := a. app.getExpectedAudienceValue()
audience, err := a.app.getExpectedAudienceValue()
if err != nil {
return "", fmt.Errorf("failed to get audience")
}
Expand Down

0 comments on commit 5eb7291

Please sign in to comment.