maxeth
maxeth
The docs show an example of manually styling the dropdown using the ```style``` attribute, yet the attribute is not recognized by typescript on neither the CountryDropdown nor the RegionDropdown. I...
Hey, I was wondering how you're handling page changes so that the ads get reinitiated/readjusted to the layout changes. For example, on the adsense dashboard, I excluded the index and...
The current implementation of the WebSocket transport doesn't provide enough options to protect against DoS/DDoS by users sending large payloads over multiple WebSocket connections, which will then be processed in...
In transport/websocket.go, when `Upgrader.Upgrade()` returns an error, [we try to send a `http.StatusBadRequest`](https://github.com/99designs/gqlgen/blob/master/graphql/handler/transport/websocket.go#L96C2-L101C3) ```go func (t Websocket) Do(w http.ResponseWriter, r *http.Request, exec graphql.GraphExecutor) { t.injectGraphQLWSSubprotocols() ws, err := t.Upgrader.Upgrade(w, r,...