Skip to content

Commit

Permalink
Default to true
Browse files Browse the repository at this point in the history
  • Loading branch information
mimi-imtbl committed May 10, 2024
1 parent ba47c8f commit 59b59f6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -138,9 +138,7 @@ export class Sale extends Base<WidgetType.SALE> {
excludePaymentTypes={this.parameters.excludePaymentTypes!}
language="en"
multicurrency={!!this.properties?.config?.multicurrency}
waitFulfillmentSettlements={
!!this.properties?.config?.waitFulfillmentSettlements
}
waitFulfillmentSettlements={this.properties?.config?.waitFulfillmentSettlements ?? true}
/>
</Suspense>
</ConnectLoader>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ const SaleContext = createContext<SaleContextValues>({
excludePaymentTypes: [],
multicurrency: false,
selectedCurrency: undefined,
waitFulfillmentSettlements: false,
waitFulfillmentSettlements: true,
});

SaleContext.displayName = 'SaleSaleContext';
Expand Down

0 comments on commit 59b59f6

Please sign in to comment.