Skip to content

Commit

Permalink
fix: [Sale widget] Loading copy and missing type field (#1572)
Browse files Browse the repository at this point in the history
  • Loading branch information
jhesgodi authored Mar 6, 2024
1 parent 9b23ace commit c75dcf4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions packages/checkout/sdk/src/widgets/definitions/events/sale.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ export enum SaleEventType {
export type SaleSuccess = {
/** Chosen payment method */
paymentMethod: SalePaymentTypes | undefined;
/** The minted items token ids */
tokenIds: string[];
/** The executed transactions */
transactions: {
method: string;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ export function PaymentMethods() {
type: ViewActions.UPDATE_VIEW,
view: {
type: SharedViews.LOADING_VIEW,
data: { loadingText: t('views.PAYMENT_METHODS.loading.ready') },
data: { loadingText: t('views.PAYMENT_METHODS.loading.ready1') },
},
},
});
Expand Down

0 comments on commit c75dcf4

Please sign in to comment.