Fix TypeScript errors and apply t('home.count') to all-transaction page

- Fix TypeScript errors in list-summary-extend-settlement.tsx
  - Add || 0 fallback for undefined values (transactionAmount, pgFeeAmount, holdAmount, releaseAmount, offsetAmount)
- Apply t('home.count') to all-transaction list page
  - Replace NumericFormat with consistent locale pattern
  - Remove NumericFormat import

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Jay Sheen
2025-11-04 17:09:41 +09:00
parent 4fd3acfaa1
commit 93c1f0580e
2 changed files with 6 additions and 14 deletions

View File

@@ -20,31 +20,31 @@ export const ListSummaryExtendSettlement = ({
<li className="summary-amount-item">
<span className="label">{t('settlement.transactionAmount')}</span>
<span className="value">
{t('home.money', { value: new Intl.NumberFormat('en-US').format(transactionAmount) })}
{t('home.money', { value: new Intl.NumberFormat('en-US').format(transactionAmount || 0) })}
</span>
</li>
<li className="summary-amount-item">
<span className="label">{t('settlement.totalPgFee')}</span>
<span className="value minus">
{t('home.money', { value: new Intl.NumberFormat('en-US').format(pgFeeAmount) })}
{t('home.money', { value: new Intl.NumberFormat('en-US').format(pgFeeAmount || 0) })}
</span>
</li>
<li className="summary-amount-item">
<span className="label">{t('settlement.hold')}</span>
<span className="value">
{t('home.money', { value: new Intl.NumberFormat('en-US').format(holdAmount) })}
{t('home.money', { value: new Intl.NumberFormat('en-US').format(holdAmount || 0) })}
</span>
</li>
<li className="summary-amount-item">
<span className="label">{t('settlement.release')}</span>
<span className="value link">
{t('home.money', { value: new Intl.NumberFormat('en-US').format(releaseAmount) })}
{t('home.money', { value: new Intl.NumberFormat('en-US').format(releaseAmount || 0) })}
</span>
</li>
<li className="summary-amount-item">
<span className="label">{t('settlement.offset')}</span>
<span className="value minus">
{t('home.money', { value: new Intl.NumberFormat('en-US').format(offsetAmount) })}
{t('home.money', { value: new Intl.NumberFormat('en-US').format(offsetAmount || 0) })}
</span>
</li>
</ul>