1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-06-12 02:24:01 +02:00
This commit is contained in:
syuilo
2023-05-08 17:49:19 +09:00
parent b271d02660
commit 6fd63c1fb6
3 changed files with 16 additions and 3 deletions

View File

@@ -345,8 +345,11 @@ if ($i) {
if (defaultStore.state.accountSetupWizard !== -1) {
// このウィザードが実装される前に登録したユーザーには表示させないため
// TODO: そのうち消す
if (Date.now() - new Date($i.createdAt).getTime() < 1000 * 60 * 60 * 24) {
popup(defineAsyncComponent(() => import('@/components/MkUserSetupDialog.vue')), {}, {}, 'closed');
} else {
defaultStore.set('accountSetupWizard', -1);
}
}