TanStackT
TanStack8mo ago
1 reply
awake-maroon

getQuery not working in ServerRoutes (devinxi)

Before devinxi:
const { provider, clientID } = getQuery();


Now I have to do this:
    const requestURL = getRequestURL();
    const searchParams = requestURL.searchParams;

    const provider = searchParams.get("provider");
    const clientID = searchParams.get("clientID");


Not a big deal, just throwing it out here in case getQuery should be working in devinxi
Was this page helpful?