Email Verification Request Fail #23
Loading…
Reference in New Issue
No description provided.
Delete Branch "%!s(<nil>)"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
/account/verify needs to be able to handle failures from /api/account/verify-email/resend when requesting via the resend button.
Additionally the UI looks a bit mushed and could use some padding?
How can we make this be able to handle erros? Any API to use? Any input field? not sure what the process in terms of API is here
@ditorodev If the api call returns an
Error
(instance of Error),Promise.reject()
if needed for the query, and handle it however needed. I currently return errors rather than throw them.Ex
return sdk.account!().requestEmailVerification()
can bebool
orError
.