Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion PaystackFees.js
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ class PaystackFees {
.required(),
}),
);
const flat = amountInLowerDenomination > this.threshold ? this.additionalCharge : 0;
const flat = amountInLowerDenomination >= this.threshold ? this.additionalCharge : 0;
const fees = Math.ceil(this.percentage * amountInLowerDenomination + flat);
return Math.min(fees, this.cap);
}
Expand Down