diff options
| author | syuilo <4439005+syuilo@users.noreply.github.com> | 2025-03-16 19:04:14 +0900 |
|---|---|---|
| committer | syuilo <4439005+syuilo@users.noreply.github.com> | 2025-03-16 19:04:14 +0900 |
| commit | a773f2976d9ab62ca335eb65b7356454fa2dea85 (patch) | |
| tree | 645d887d74d0891ba6dcfce57af1e171c3a8312c /packages/frontend/src/components/MkUserSetupDialog.Profile.vue | |
| parent | enhance(frontend): 投稿フォームの設定メニューを改良 (改) (diff) | |
| download | sharkey-a773f2976d9ab62ca335eb65b7356454fa2dea85.tar.gz sharkey-a773f2976d9ab62ca335eb65b7356454fa2dea85.tar.bz2 sharkey-a773f2976d9ab62ca335eb65b7356454fa2dea85.zip | |
refactor(frontend): signinRequired -> ensureSignin
Diffstat (limited to 'packages/frontend/src/components/MkUserSetupDialog.Profile.vue')
| -rw-r--r-- | packages/frontend/src/components/MkUserSetupDialog.Profile.vue | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/frontend/src/components/MkUserSetupDialog.Profile.vue b/packages/frontend/src/components/MkUserSetupDialog.Profile.vue index 7a5e5772a4..30925b854c 100644 --- a/packages/frontend/src/components/MkUserSetupDialog.Profile.vue +++ b/packages/frontend/src/components/MkUserSetupDialog.Profile.vue @@ -39,9 +39,9 @@ import FormSlot from '@/components/form/slot.vue'; import MkInfo from '@/components/MkInfo.vue'; import { chooseFileFromPc } from '@/utility/select-file.js'; import * as os from '@/os.js'; -import { signinRequired } from '@/i.js'; +import { ensureSignin } from '@/i.js'; -const $i = signinRequired(); +const $i = ensureSignin(); const name = ref($i.name ?? ''); const description = ref($i.description ?? ''); |