Skip to content

Commit

Permalink
[NO-CHANGELOG][Sale Widget] Fix type import error (#1982)
Browse files Browse the repository at this point in the history
  • Loading branch information
jhesgodi authored Jul 18, 2024
1 parent d4cb602 commit 3b3d193
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions packages/checkout/sdk/src/widgets/definitions/events/sale.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import { FundingBalance } from '@imtbl/checkout-widgets/src/widgets/sale/types';
import { TokenInfo } from '../../../types';

/**
Expand Down Expand Up @@ -89,7 +88,7 @@ export type SalePaymentMethod = {
*/
export type SalePaymentToken = {
/** Chosen payment token */
settlementType: FundingBalance['type'];
settlementType: string;
type: string;
token: TokenInfo;
amount: string;
Expand Down

0 comments on commit 3b3d193

Please sign in to comment.