(data: SignUpSchema)
| 107 | const { handleSubmit } = methods; |
| 108 | |
| 109 | const createAccount = (data: SignUpSchema) => { |
| 110 | |
| 111 | const email = data.email; |
| 112 | const password = data.password |
| 113 | |
| 114 | authService.signUp(email, password, onSignupSuccess, onSignupError); |
| 115 | }; |
| 116 | |
| 117 | return ( |
| 118 | <> |
nothing calls this directly
no outgoing calls
no test coverage detected