diff --git a/apps/dashboard/src/App.tsx b/apps/dashboard/src/App.tsx index 5905aa3..5df8763 100644 --- a/apps/dashboard/src/App.tsx +++ b/apps/dashboard/src/App.tsx @@ -1340,16 +1340,19 @@ function formatExpiry( }); if (days < 0) { const ago = Math.ceil(-days); - return { label: `${dateStr} 만료 (${ago}일 전)`, cls: 'is-expired' }; + return { + label: `결제 만료 ${dateStr} (${ago}일 전)`, + cls: 'is-expired', + }; } if (days < 7) { return { - label: `${dateStr}까지 (${Math.floor(days)}일)`, + label: `결제 ${dateStr}까지 (${Math.floor(days)}일)`, cls: 'is-soon', }; } return { - label: `${dateStr}까지 (${Math.floor(days)}일)`, + label: `결제 ${dateStr}까지 (${Math.floor(days)}일)`, cls: 'is-active', }; } @@ -1475,39 +1478,33 @@ function AccountSettings({ onRestartStack }: { onRestartStack: () => void }) {
계정 없음
) : (