fix: redirect to done page instead of public domain after tunnel setup to prevent auth loop

This commit is contained in:
haorwen
2026-06-21 18:53:31 +08:00
parent b8ac5fd04a
commit 20c47793cb
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "vocechat-web",
"version": "0.9.86",
"version": "0.9.87",
"homepage": "https://voce.chat",
"dependencies": {
"@metamask/onboarding": "^1.0.1",
@@ -55,7 +55,7 @@ export default function GetPublicDomain() {
setCountdown(remaining);
if (remaining <= 0) {
clearInterval(countRef.current!);
window.location.href = url;
nextStep();
}
}, 1000);
}