DirectroyEntry 컴포넌트 구현

This commit is contained in:
static
2025-01-04 02:46:19 +09:00
parent da18e6856a
commit 5115217153
10 changed files with 109 additions and 31 deletions

View File

@@ -46,7 +46,7 @@
onMount(async () => {
const res = await refreshToken();
if (res.ok) {
await goto(data.redirectPath);
await goto(data.redirectPath, { replaceState: true });
}
});
</script>

View File

@@ -21,7 +21,7 @@
($clientKeyStore &&
(await requestMasterKeyDownload($clientKeyStore.decryptKey, $clientKeyStore.verifyKey)))
) {
await goto(data.redirectPath);
await goto(data.redirectPath, { replaceState: true });
}
});
</script>

View File

@@ -47,7 +47,7 @@
onMount(async () => {
if ($clientKeyStore) {
await goto(data.redirectPath);
await goto(data.redirectPath, { replaceState: true });
}
});
</script>