Skip to content

Commit

Permalink
fix(billing): correct addon modal usage calculations TASK-1483 (#5456)
Browse files Browse the repository at this point in the history
### 📣 Summary
Fixes calculation of remaining balance in addon modal on usage page.
  • Loading branch information
jamesrkiger authored Jan 28, 2025
1 parent 45e01f4 commit 6ca7f16
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ function OneTimeAddOnUsageModal(props: OneTimeAddOnUsageModalProps) {
</label>
<data>
<strong>
{limitDisplay(props.type, props.remainingLimit)}
{limitDisplay(props.type, props.usage, props.remainingLimit)}
</strong>
</data>
</li>
Expand Down

0 comments on commit 6ca7f16

Please sign in to comment.