From 4fd80ee8e26f4d4b880df9736c0257456259eb9c Mon Sep 17 00:00:00 2001 From: Marcos Gutierrez Date: Fri, 31 Jan 2020 11:22:13 -0300 Subject: fix fulfillmentUrl in the history rener --- src/webex/pages/popup.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src') diff --git a/src/webex/pages/popup.tsx b/src/webex/pages/popup.tsx index f873414a1..44f45f9db 100644 --- a/src/webex/pages/popup.tsx +++ b/src/webex/pages/popup.tsx @@ -508,7 +508,7 @@ function formatHistoryItem(historyItem: HistoryEvent) { } case "payment-sent": { - const url = historyItem.orderShortInfo.merchantBaseUrl; + const url = historyItem.orderShortInfo.fulfillmentUrl; const { merchant, item } = parseSummary( historyItem.orderShortInfo.summary ); @@ -519,7 +519,7 @@ function formatHistoryItem(historyItem: HistoryEvent) { const fulfillmentLinkElem = ( {item ? abbrev(item, 30) : null} @@ -540,14 +540,14 @@ function formatHistoryItem(historyItem: HistoryEvent) { ); } case "order-accepted": { - const url = historyItem.orderShortInfo.merchantBaseUrl; + const url = historyItem.orderShortInfo.fulfillmentUrl; const { merchant, item } = parseSummary( historyItem.orderShortInfo.summary ); const fulfillmentLinkElem = ( {item ? abbrev(item, 40) : null} -- cgit v1.2.3