aboutsummaryrefslogtreecommitdiff
path: root/src/webex/pages/popup.tsx
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2019-05-07 23:46:50 +0200
committerFlorian Dold <florian.dold@gmail.com>2019-05-07 23:46:50 +0200
commite89b0752c17def0dcaf15af2fa162cbd56bde4f1 (patch)
tree26fc06d551cf72124ad0d54fc9ff396df242d5a0 /src/webex/pages/popup.tsx
parent1cfac33f537bbd649f2c6535baa5fd273a66fcb3 (diff)
downloadwallet-core-e89b0752c17def0dcaf15af2fa162cbd56bde4f1.tar.xz
update package versions
Diffstat (limited to 'src/webex/pages/popup.tsx')
-rw-r--r--src/webex/pages/popup.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/webex/pages/popup.tsx b/src/webex/pages/popup.tsx
index 968e99464..2cdfd8235 100644
--- a/src/webex/pages/popup.tsx
+++ b/src/webex/pages/popup.tsx
@@ -104,10 +104,10 @@ class Router extends React.Component<any, any> {
return;
}
if (childProps.default) {
- defaultChild = child;
+ defaultChild = child as React.ReactChild;
}
if (childProps.route === route) {
- foundChild = child;
+ foundChild = child as React.ReactChild;
}
});
const c: React.ReactChild | null = foundChild || defaultChild;