web


git clone https://radroots.dev/git/web.git
Log | Files | Refs | Submodules | README | LICENSE

commit 2532b2bf3c41b09930d32f3b46d4bc04cc5f0651
parent 2c7a15bc809e2d4d5bdf78399631cd13971456b9
Author: triesap <137732411+triesap@users.noreply.github.com>
Date:   Sat, 31 Aug 2024 16:33:17 +0000

Edit (conf) splash screen bug during initial key creation

Diffstat:
Msrc/routes/(conf)/conf/nostr/+page.svelte | 3+--
1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/src/routes/(conf)/conf/nostr/+page.svelte b/src/routes/(conf)/conf/nostr/+page.svelte @@ -1,7 +1,6 @@ <script lang="ts"> import { cl } from "$lib/client"; import { _cf } from "$lib/conf"; - import { restart } from "$lib/utils"; </script> <div class={`flex flex-col w-full pt-16 justify-center items-center`}> @@ -20,7 +19,7 @@ pk_hex, ); if (key_pref_added) { - await restart(); + location.reload(); } } }}