commit 9685ab23641cea102ecb638730047b73e83ad88e
parent 67ca21e62e0408e4b1b63ded5e4a4849a4671935
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:
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();
}
}
}}