Skip to content

Commit

Permalink
fix startup
Browse files Browse the repository at this point in the history
  • Loading branch information
lucas-gaitzsch committed Apr 25, 2024
1 parent 6564d69 commit 2f57735
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ func (s *Server) Serve(ctx context.Context) {
AllowOrigins: "*",
AllowHeaders: "*",
AllowMethods: strings.Join([]string{http.MethodGet, http.MethodPost}, ","),
AllowCredentials: true,
AllowCredentials: false,
}),
recover.New(),
serverutils.ProvideUserCtxMiddleware(ctx),
Expand Down

0 comments on commit 2f57735

Please sign in to comment.