-
Notifications
You must be signed in to change notification settings - Fork 26
Open
Labels
Description
cozy-banks/src/ducks/transactions/TransactionRecurrenceEditor.jsx
Lines 36 to 41 in ee7e82e
// TODO Add currency into recurrences object | |
const formatRecurrenceAmount = (amount, recurrence) => { | |
if (recurrence.currency) { | |
return `${Math.abs(amount)}${recurrence.currency}` | |
} else { | |
return `${Math.abs(amount)}${DEFAULT_CURRENCY_SYMBOL}` |