fix redirect on BSP registration

master
Niko PLP 10 months ago
parent d6aa2182f8
commit 7ad816eb0e
  1. 3
      ng-app/src/App.svelte

@ -115,6 +115,7 @@
if ($active_wallet && $active_wallet.id == event.data.walletid) { if ($active_wallet && $active_wallet.id == event.data.walletid) {
active_session.set(undefined); active_session.set(undefined);
active_wallet.set(undefined); active_wallet.set(undefined);
push("#/wallet/login");
} }
break; break;
} }
@ -137,9 +138,9 @@
delete w[value.id]; delete w[value.id];
return w; return w;
}); });
push("#/wallet/login");
} }
} else { } else {
push("#/wallet/login");
} }
}); });
} }

Loading…
Cancel
Save