diff --git a/packages/hoppscotch-common/src/pages/join-team.vue b/packages/hoppscotch-common/src/pages/join-team.vue index ccc27e9f..ac534632 100644 --- a/packages/hoppscotch-common/src/pages/join-team.vue +++ b/packages/hoppscotch-common/src/pages/join-team.vue @@ -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,