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
When initializing query state boolean to true (useQueryState("bool", parseAsBoolean.withDefault(true))), setting value to false (setBool(false)) will update the url params bool=false, and won't when setting it to true (empty url params). The behavior is inverted, it should update the url for true, not false.
Expected: When default boolean query state to true, it should update the url with the query param.