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
// Should complain about wrong fetcher argument type being an array but expecting a string
useSWR("test", ([id]:[string]) => {})
// Should complain about fetcher argument must be an array
useSWR(["test"], (id) => {})