We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Usage example:
const { isSessionLoading } = useSession(); const { isUserLoading } = useUser();
Both isSessionLoading and isUserLoading are undefined. Usage example should be updated to:
isSessionLoading
isUserLoading
const { isLoading: isSessionLoading } = useSession(); const { isLoading: isUserLoading } = useUser();
The text was updated successfully, but these errors were encountered:
fix: logger typing improvements (#813) RELEASE
ab20610
## Related Issues related to descope/etc#7827 fixes #811 fixes #810 fixes #812 ## Description - change logger interface to be more loose ➰ - fix vue sdk readme based on a feedback 👍 - add style id to vue sdk ![image](https://github.com/user-attachments/assets/78165245-8be4-4117-8a07-b4b3ce7f1220) ![image](https://github.com/user-attachments/assets/58ab1026-6795-4e80-8682-ae3e59348832)
@asafshen looks good 😎
Sorry, something went wrong.
asafshen
Successfully merging a pull request may close this issue.
Usage example:
Both
isSessionLoading
andisUserLoading
are undefined. Usage example should be updated to:The text was updated successfully, but these errors were encountered: