Skip to content

Commit

Permalink
Fix default stae
Browse files Browse the repository at this point in the history
  • Loading branch information
andykim committed Aug 19, 2022
1 parent caf5a61 commit 669e6c0
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions modules/gateways/xendit/lib/ActionBase.php
Original file line number Diff line number Diff line change
Expand Up @@ -448,10 +448,9 @@ public function extractCustomerAddress(array $params): array
'street_line1' => $params['address1'],
'street_line2' => $params['address2'],
'city' => $params['city'],
'province_state' => $params['state'],
'state' => $params['state'],
'postal_code' => $params['postcode']
];

return array_filter($customerAddressObject);
}
}

0 comments on commit 669e6c0

Please sign in to comment.