summaryrefslogtreecommitdiff
path: root/packages/frontend/src/components/MkPostForm.vue
diff options
context:
space:
mode:
authorsyuilo <4439005+syuilo@users.noreply.github.com>2025-03-16 19:04:14 +0900
committersyuilo <4439005+syuilo@users.noreply.github.com>2025-03-16 19:04:14 +0900
commita773f2976d9ab62ca335eb65b7356454fa2dea85 (patch)
tree645d887d74d0891ba6dcfce57af1e171c3a8312c /packages/frontend/src/components/MkPostForm.vue
parentenhance(frontend): 投稿フォームの設定メニューを改良 (改) (diff)
downloadsharkey-a773f2976d9ab62ca335eb65b7356454fa2dea85.tar.gz
sharkey-a773f2976d9ab62ca335eb65b7356454fa2dea85.tar.bz2
sharkey-a773f2976d9ab62ca335eb65b7356454fa2dea85.zip
refactor(frontend): signinRequired -> ensureSignin
Diffstat (limited to 'packages/frontend/src/components/MkPostForm.vue')
-rw-r--r--packages/frontend/src/components/MkPostForm.vue4
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/frontend/src/components/MkPostForm.vue b/packages/frontend/src/components/MkPostForm.vue
index eb278a0d7e..6e941f75be 100644
--- a/packages/frontend/src/components/MkPostForm.vue
+++ b/packages/frontend/src/components/MkPostForm.vue
@@ -125,7 +125,7 @@ import { store } from '@/store.js';
import MkInfo from '@/components/MkInfo.vue';
import { i18n } from '@/i18n.js';
import { instance } from '@/instance.js';
-import { signinRequired, notesCount, incNotesCount } from '@/i.js';
+import { ensureSignin, notesCount, incNotesCount } from '@/i.js';
import { getAccounts, openAccountMenu as openAccountMenu_ } from '@/accounts.js';
import { uploadFile } from '@/utility/upload.js';
import { deepClone } from '@/utility/clone.js';
@@ -138,7 +138,7 @@ import { prefer } from '@/preferences.js';
import { getPluginHandlers } from '@/plugin.js';
import { DI } from '@/di.js';
-const $i = signinRequired();
+const $i = ensureSignin();
const modal = inject('modal');