Skip to content

Commit

Permalink
feat(cart): change address update action payload to Partial (#2443)
Browse files Browse the repository at this point in the history
this matches the driver interface
  • Loading branch information
griest024 committed May 20, 2023
1 parent a6ad6bb commit c5374c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libs/cart/state/src/actions/cart-address.actions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export enum DaffCartAddressActionTypes {
export class DaffCartAddressUpdate<T extends DaffCartAddress = DaffCartAddress> implements Action {
readonly type = DaffCartAddressActionTypes.CartAddressUpdateAction;

constructor(public payload: T) {}
constructor(public payload: Partial<T>) {}
}

/**
Expand Down

0 comments on commit c5374c2

Please sign in to comment.