Using QR codes for auth?
This would be with react as a PWA, and following the https://docs.convex.dev/auth/advanced/custom-auth#client-side-integration (sort of skipping the OIDC part) it seems like really the custom OIDC/JWT provider is just a guide, and really I can go as low level as a function that returns https://docs.convex.dev/api/modules/react#convexproviderwithauth and it's my responsibility to update the dependencies for the array with the
const { isLoading, isAuthenticated, getToken } = useProviderXAuth(); line such that it accurately reflects my login state?