### Description Reusing `DefaultJWTConfig.Claims` can result both unexpected behavior and a possible panic. I'd recommend the following change: `middleware/jwt.go:98-101` ``` go if config.Claims == nil { config.Claims = jwt.MapClaims{} } ```