Skip to content

Commit

Permalink
don't need to sleep 5 seconds
Browse files Browse the repository at this point in the history
  • Loading branch information
rizen committed Oct 27, 2024
1 parent 416a08b commit 8f0ca3e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/pages/user/logout.vue
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ definePageMeta({
const config = useRuntimeConfig();
const currentUser = useCurrentUser();
await currentUser.logout();
await sleep(1000 * 5);
await sleep(1000);
await navigateTo('/');
</script>

0 comments on commit 8f0ca3e

Please sign in to comment.