aboutsummaryrefslogtreecommitdiff
path: root/src/webex/notify.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/webex/notify.ts')
-rw-r--r--src/webex/notify.ts6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/webex/notify.ts b/src/webex/notify.ts
index 733367a59..23e73d145 100644
--- a/src/webex/notify.ts
+++ b/src/webex/notify.ts
@@ -388,7 +388,7 @@ async function processProposal(proposal: any) {
const offerId = await saveOffer(proposal);
const uri = new URI(chrome.extension.getURL(
- "/src/pages/confirm-contract.html"));
+ "/src/webex/pages/confirm-contract.html"));
const params = {
offerId: offerId.toString(),
};
@@ -512,7 +512,7 @@ function registerHandlers() {
suggested_exchange_url: msg.suggested_exchange_url,
wt_types: JSON.stringify(msg.wt_types),
};
- const uri = new URI(chrome.extension.getURL("/src/pages/confirm-create-reserve.html"));
+ const uri = new URI(chrome.extension.getURL("/src/webex/pages/confirm-create-reserve.html"));
const redirectUrl = uri.query(params).href();
window.location.href = redirectUrl;
});
@@ -521,7 +521,7 @@ function registerHandlers() {
const params = {
req: JSON.stringify(msg),
};
- const uri = new URI(chrome.extension.getURL("/src/pages/add-auditor.html"));
+ const uri = new URI(chrome.extension.getURL("/src/webex/pages/add-auditor.html"));
const redirectUrl = uri.query(params).href();
window.location.href = redirectUrl;
});