diff --git a/src/views/account/AccountView.vue b/src/views/account/AccountView.vue
index a3af97a..d810d16 100644
--- a/src/views/account/AccountView.vue
+++ b/src/views/account/AccountView.vue
@@ -247,6 +247,8 @@ const WALLET_KINDS = [
]
const walletsOfKind = computed(() => wallets.value.filter((w) => w.type === form.walletKind))
const toWalletsOfKind = computed(() => wallets.value.filter((w) => w.type === form.toWalletKind))
+// 선택한 계좌 종류 라벨(계좌/현금/카드/대출/증권) — 셀렉트 안내문에 사용
+const walletKindLabel = computed(() => WALLET_KINDS.find((k) => k.value === form.walletKind)?.label || '계좌')
function walletKindOf(id) {
const w = wallets.value.find((x) => x.id === id)
return w ? w.type : ''
@@ -1069,9 +1071,9 @@ onMounted(async () => {
@@ -1097,7 +1099,7 @@ onMounted(async () => {
@@ -1109,7 +1111,7 @@ onMounted(async () => {