rm useless function wrap

zio/stable
Samuel Newman 2024-03-19 15:29:25 +00:00
parent 08d12d9a3d
commit 49a392bfb3
1 changed files with 1 additions and 2 deletions

View File

@ -85,7 +85,6 @@ export const Login = ({onPressBack}: {onPressBack: () => void}) => {
}
}, [serviceError, serviceUrl, _])
const onPressRetryConnect = () => refetchService()
const onPressForgotPassword = () => {
track('Signin:PressedForgotPassword')
setCurrentForm(Forms.ForgotPassword)
@ -109,7 +108,7 @@ export const Login = ({onPressBack}: {onPressBack: () => void}) => {
setServiceUrl={setServiceUrl}
onPressBack={onPressBack}
onPressForgotPassword={onPressForgotPassword}
onPressRetryConnect={onPressRetryConnect}
onPressRetryConnect={refetchService}
/>
)
break