Skip to content

Commit

Permalink
Minor adjustment from 569XZilms50 to -
Browse files Browse the repository at this point in the history
  • Loading branch information
chisPmama committed Feb 24, 2024
1 parent e2a23ee commit 904a680
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Budget/Budget.js
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ const Budget = () => {
<h3 className='budget-details-h3'>Remaining Budget</h3>
{(amountRemaining / 100).toFixed(2) < 0 ? (
<div className='budget-details-flex-neg'>
<p className='budget-details-amount-neg'>${(amountRemaining / 100).toFixed(2)}</p>
<p className='budget-details-amount-neg'>-${Math.abs(amountRemaining / 100).toFixed(2)}</p>
</div>
) : (
<div className='budget-details-flex'>
Expand Down

0 comments on commit 904a680

Please sign in to comment.