Skip to content
Merged
Show file tree
Hide file tree
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
5 changes: 0 additions & 5 deletions packages/core/src/app/shipping/ShippingForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ import {
type CheckoutParams,
type CheckoutSelectors,
type Consignment,
type CustomerRequestOptions,
type FormField,
type RequestOptions,
type ShippingInitializeOptions,
Expand Down Expand Up @@ -42,7 +41,6 @@ export interface ShippingFormProps {
onSignIn(): void;
onSingleShippingSubmit(values: SingleShippingFormValues): void;
onUnhandledError(error: Error): void;
signOut(options?: CustomerRequestOptions): void;
updateAddress(
address: Partial<Address>,
options: RequestOptions<CheckoutParams>,
Expand All @@ -69,7 +67,6 @@ const ShippingForm = ({
onUnhandledError,
shippingAddress,
shouldShowOrderComments,
signOut,
updateAddress,
isShippingStepPending,
isInitialValueLoaded,
Expand Down Expand Up @@ -121,15 +118,13 @@ const ShippingForm = ({
isBillingSameAsShipping={isBillingSameAsShipping}
isInitialValueLoaded={isInitialValueLoaded}
isLoading={isLoading}
isMultiShippingMode={isMultiShippingMode}
isShippingStepPending={isShippingStepPending}
methodId={methodId}
onSubmit={onSingleShippingSubmit}
onUnhandledError={onUnhandledError}
shippingAddress={shippingAddress}
shippingFormRenderTimestamp={shippingFormRenderTimestamp}
shouldShowOrderComments={shouldShowOrderComments}
signOut={signOut}
updateAddress={updateAddress}
/>
);
Expand Down
Loading