diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2023-05-15 11:03:18 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2023-05-15 11:03:18 +0900 |
| commit | c066013c5723587ecadb20ff1bfd9397af85647a (patch) | |
| tree | 0ae1afb33a31f55ff4a5c5e744d3877b4831d8bd | |
| parent | fix #10850 ? (diff) | |
| download | misskey-c066013c5723587ecadb20ff1bfd9397af85647a.tar.gz misskey-c066013c5723587ecadb20ff1bfd9397af85647a.tar.bz2 misskey-c066013c5723587ecadb20ff1bfd9397af85647a.zip | |
fix #10850 ?
| -rw-r--r-- | packages/frontend/src/init.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/frontend/src/init.ts b/packages/frontend/src/init.ts index 17ebb6bdd7..763b6d44b0 100644 --- a/packages/frontend/src/init.ts +++ b/packages/frontend/src/init.ts @@ -343,7 +343,7 @@ if ($i) { // only add post shortcuts if logged in hotkeys['p|n'] = post; - defaultStore.ready.then(() => { + defaultStore.loaded.then(() => { if (defaultStore.state.accountSetupWizard !== -1) { popup(defineAsyncComponent(() => import('@/components/MkUserSetupDialog.vue')), {}, {}, 'closed'); } |