@@ -178,7 +178,9 @@ router.beforeEach((to, from, next) => {
updateInviteId()
const { redirectUrl } = to.query
if (redirectUrl && /http/.test(decodeURIComponent(redirectUrl))) {
- location.replace(decodeURIComponent(redirectUrl))
+ setTimeout(() => {
+ location.replace(decodeURIComponent(redirectUrl))
+ }, 500)
}
next()
})