Skip to content

Commit

Permalink
LPD-47555 Fix some bugs on marketplace
Browse files Browse the repository at this point in the history
  • Loading branch information
eduardo-diniz authored and brianchandotcom committed Jan 29, 2025
1 parent fa2f073 commit 95dc7cf
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -214,6 +214,8 @@ const GetAppOutlet = () => {

const orderType = getProductOrderTypes(productSpecificationValues);

delete billingAddress.saveAddress;

try {
const cart = buildNewCart({
billingAddress,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ type BillingAddress = {
name?: string;
phoneNumber?: string;
regionISOCode?: string;
saveAddress: boolean;
saveAddress?: boolean;
street1?: string;
street2?: string;
zip?: string;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<#setting date_format="MMMMM d, yyyy">

<#if (CPDefinition_displayDate.getData())??>
${CPDefinition_displayDate.getData()?datetime("MM/dd/yy HH:mm")?date}
${CPDefinition_displayDate.getData()?datetime("M/d/yy, h:mm a")?string("MM/dd/yy HH:mm")}
</#if>

0 comments on commit 95dc7cf

Please sign in to comment.