aboutsummaryrefslogtreecommitdiff
path: root/src/pages/popup.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/pages/popup.tsx')
-rw-r--r--src/pages/popup.tsx4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/pages/popup.tsx b/src/pages/popup.tsx
index 9b375097f..c0d280db7 100644
--- a/src/pages/popup.tsx
+++ b/src/pages/popup.tsx
@@ -25,7 +25,6 @@
"use strict";
-import {substituteFulfillmentUrl} from "../helpers";
import BrowserClickedEvent = chrome.browserAction.BrowserClickedEvent;
import {HistoryRecord, HistoryLevel} from "../wallet";
import {
@@ -372,8 +371,7 @@ function formatHistoryItem(historyItem: HistoryRecord) {
);
}
case "pay": {
- let url = substituteFulfillmentUrl(d.fulfillmentUrl,
- {H_contract: d.contractHash});
+ let url = d.fulfillmentUrl;
let merchantElem = <em>{abbrev(d.merchantName, 15)}</em>;
let fulfillmentLinkElem = <a href={url} onClick={openTab(url)}>view product</a>;
return (