Skip to content

Commit

Permalink
🐛 fix(locale): Empty
Browse files Browse the repository at this point in the history
  • Loading branch information
web-ppanel committed Dec 16, 2024
1 parent a31e763 commit 3832d20
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/user/app/(main)/(user)/payment/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ export default function Page() {
<dl className='grid gap-3'>
<div className='flex items-center justify-between'>
<dt className='text-muted-foreground'>
<Badge>{t(`methods.${data?.method}`)}</Badge>
{data?.method && <Badge>{t(`methods.${data?.method}`)}</Badge>}
</dt>
</div>
</dl>
Expand Down

0 comments on commit 3832d20

Please sign in to comment.