Skip to content

Commit

Permalink
[NO CHANGELOG][Sale Widget] fix type error (#1998)
Browse files Browse the repository at this point in the history
  • Loading branch information
jhesgodi authored Jul 23, 2024
1 parent 6bd9cb1 commit 1b82b66
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export const getPaymentTokenDetails = (
): SalePaymentToken => {
const { fundingItem } = fundingBalance;
return ({
settlementType: fundingBalance.type,
settlementType: `${fundingBalance.type}`,
type: fundingItem.type,
token: fundingItem.token,
amount: fundingItem.fundsRequired.formattedAmount,
Expand Down

0 comments on commit 1b82b66

Please sign in to comment.