Skip to content

Commit

Permalink
fix basic auth issue (#483)
Browse files Browse the repository at this point in the history
  • Loading branch information
yohamta authored Sep 21, 2023
1 parent 8fa6681 commit e99b7ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion service/frontend/fx.go
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ func New(params Params) *server.Server {
if params.Config.IsBasicAuth {
serverParams.BasicAuth = &server.BasicAuth{
Username: params.Config.BasicAuthUsername,
Password: params.Config.BasicAuthUsername,
Password: params.Config.BasicAuthPassword,
}
}

Expand Down

0 comments on commit e99b7ae

Please sign in to comment.