Skip to content

Commit

Permalink
fix: remove unnecessary line
Browse files Browse the repository at this point in the history
  • Loading branch information
koko57 committed Jul 9, 2024
1 parent b689e39 commit 12b2fa7
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/libs/CurrencyUtils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,6 @@ function convertToFrontendAmountAsInteger(amountAsInt: number, currency: string
* @note we do not support any currencies with more than two decimal places.
*/
function convertToFrontendAmountAsString(amountAsInt: number | null | undefined, currency: string = CONST.CURRENCY.USD, withDecimals = true): string {
// function convertToFrontendAmountAsString(amountAsInt: number | null | undefined, withDecimals = true): string {
if (amountAsInt === null || amountAsInt === undefined) {
return '';
}
Expand Down

0 comments on commit 12b2fa7

Please sign in to comment.