fix(common): resolve issues around shared workspace invite validation (#4836)

This commit is contained in:
James George 2025-03-06 12:53:49 +05:30 committed by GitHub
parent f3840e4342
commit e5be5ff227
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -194,6 +194,12 @@ onMounted(async () => {
})
onLoggedIn(async () => {
const probableUser = platform.auth.getProbableUser()
if (probableUser !== null) {
await platform.auth.waitProbableLoginToConfirm()
}
if (typeof route.query.id === "string") {
inviteDetails.execute({
inviteID: route.query.id,