From 53a9396ad3f56f036c0251ca3faa54495f4cdf08 Mon Sep 17 00:00:00 2001 From: Sean Yesmunt Date: Fri, 12 Apr 2019 09:03:47 -0400 Subject: [PATCH] fix typo --- src/ui/modal/modalPhoneCollection/view.jsx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/ui/modal/modalPhoneCollection/view.jsx b/src/ui/modal/modalPhoneCollection/view.jsx index 722abfdae..753e4d644 100644 --- a/src/ui/modal/modalPhoneCollection/view.jsx +++ b/src/ui/modal/modalPhoneCollection/view.jsx @@ -5,10 +5,10 @@ import Button from 'component/button'; import UserPhoneVerify from 'component/userPhoneVerify'; import { withRouter } from 'react-router-dom'; -const LazyUserPhoneNew = React.lazy(() => import( - /* webpackChunkName: "userPhoneNew" */ - 'component/userPhoneNew' -)); +const LazyUserPhoneNew = React.lazy(() => + import(/* webpackChunkName: "userPhoneNew" */ + 'component/userPhoneNew') +); type Props = { phone: ?number, @@ -36,8 +36,8 @@ class ModalPhoneCollection extends React.PureComponent { if (!user.phone_number && !phone) { return ( - }> - + }> + ); } else if (!user.phone_number) {