aboutsummaryrefslogtreecommitdiff
path: root/src/webex/pageEntryPoint.ts
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2020-05-15 12:53:35 +0530
committerFlorian Dold <florian.dold@gmail.com>2020-05-15 12:53:35 +0530
commit35c83414f9e0af11012c1a2e00672d2a7c1856ae (patch)
treebe7d1ad1787706400aaac931c00778b7699a1d1b /src/webex/pageEntryPoint.ts
parentcda75feb5bf7623439f3f5f8da0c6da0c164b3fb (diff)
downloadwallet-core-35c83414f9e0af11012c1a2e00672d2a7c1856ae.tar.xz
fix issues in the webextension refund UI
Diffstat (limited to 'src/webex/pageEntryPoint.ts')
-rw-r--r--src/webex/pageEntryPoint.ts4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/webex/pageEntryPoint.ts b/src/webex/pageEntryPoint.ts
index b9bdba06e..9fd1d36f1 100644
--- a/src/webex/pageEntryPoint.ts
+++ b/src/webex/pageEntryPoint.ts
@@ -25,6 +25,7 @@ import { createPopup } from "./pages/popup";
import { createWithdrawPage } from "./pages/withdraw";
import { createWelcomePage } from "./pages/welcome";
import { createPayPage } from "./pages/pay";
+import { createRefundPage } from "./pages/refund";
function main(): void {
try {
@@ -47,6 +48,9 @@ function main(): void {
case "pay.html":
mainElement = createPayPage();
break;
+ case "refund.html":
+ mainElement = createRefundPage();
+ break;
default:
throw Error(`page '${page}' not implemented`);
}