You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This happens because react-query queries the endpoints after N seconds even if nothing happened. This makes queries to the Slack APIs and because we have a per minute limit on those APIs the request fails making the app to show the 400 error page.
Ways to fix this:
Add a try and catch Blok on every call to Slack API methods
Ask react-query to stop querying after the first request (I prefer this one)
The text was updated successfully, but these errors were encountered:
This happens because react-query queries the endpoints after N seconds even if nothing happened. This makes queries to the Slack APIs and because we have a per minute limit on those APIs the request fails making the app to show the 400 error page.
Ways to fix this:
The text was updated successfully, but these errors were encountered: