aboutsummaryrefslogtreecommitdiffstats
path: root/packages/website/ts/components/dialogs/wrapped_eth_section_notice_dialog.tsx
diff options
context:
space:
mode:
authorfragosti <francesco.agosti93@gmail.com>2018-08-25 06:59:14 +0800
committerfragosti <francesco.agosti93@gmail.com>2018-08-25 06:59:14 +0800
commitad161a973e5453ec267510f54d88621517254039 (patch)
tree7516ec93a492bb01e2995fd31b19edaa30e3a7cd /packages/website/ts/components/dialogs/wrapped_eth_section_notice_dialog.tsx
parent103e1aa250bc6ce3189aec5ab373f5644c6d4a93 (diff)
downloaddexon-sol-tools-ad161a973e5453ec267510f54d88621517254039.tar
dexon-sol-tools-ad161a973e5453ec267510f54d88621517254039.tar.gz
dexon-sol-tools-ad161a973e5453ec267510f54d88621517254039.tar.bz2
dexon-sol-tools-ad161a973e5453ec267510f54d88621517254039.tar.lz
dexon-sol-tools-ad161a973e5453ec267510f54d88621517254039.tar.xz
dexon-sol-tools-ad161a973e5453ec267510f54d88621517254039.tar.zst
dexon-sol-tools-ad161a973e5453ec267510f54d88621517254039.zip
Change all onTouchTap to onClick
Diffstat (limited to 'packages/website/ts/components/dialogs/wrapped_eth_section_notice_dialog.tsx')
-rw-r--r--packages/website/ts/components/dialogs/wrapped_eth_section_notice_dialog.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/website/ts/components/dialogs/wrapped_eth_section_notice_dialog.tsx b/packages/website/ts/components/dialogs/wrapped_eth_section_notice_dialog.tsx
index 78b270c1e..cf2c4dda5 100644
--- a/packages/website/ts/components/dialogs/wrapped_eth_section_notice_dialog.tsx
+++ b/packages/website/ts/components/dialogs/wrapped_eth_section_notice_dialog.tsx
@@ -14,7 +14,7 @@ export const WrappedEthSectionNoticeDialog = (props: WrappedEthSectionNoticeDial
title="Dedicated Wrapped Ether Section"
titleStyle={{ fontWeight: 100 }}
actions={[
- <FlatButton key="acknowledgeWrapEthSection" label="Sounds good" onTouchTap={props.onToggleDialog} />,
+ <FlatButton key="acknowledgeWrapEthSection" label="Sounds good" onClick={props.onToggleDialog} />,
]}
open={props.isOpen}
onRequestClose={props.onToggleDialog}