Skip to content

Commit e6f183b

Browse files
committed
Fix merge regression with double currency #469
1 parent 629dea3 commit e6f183b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/Expense/ExpenseList.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ const Expense: ExpenseComponent = ({ e, userId }) => {
9797
{t('actors.you')} {t(`ui.expense.you.${youPaid ? 'lent' : 'owe'}`)}
9898
</div>
9999
<div className={`text-right ${youPaid ? 'text-emerald-500' : 'text-orange-600'}`}>
100-
<span className="font-light">{e.currency}</span> {toUIString(yourExpenseAmount)}
100+
{toUIString(yourExpenseAmount)}
101101
</div>
102102
</>
103103
) : (

0 commit comments

Comments
 (0)