Error Handling
Provide your users with useful information about the errors being returned from Sign In and Sign Up requests.
When using the signUp() or signIn() functions, proper error handling can help you provide your users with useful feedback.
Example
A user is attempting to sign up with your application, but they are attempting to use a password that has been found in an online data breach. This will return a 422 error code with the message: "Password has been found in an online data breach. For account safety, please use a different password."
1import { useState } from "react";2import { useSignUp } from "@clerk/clerk-react";34function Example() {5const [error, setError] = useState(null);67const { signUp } = useSignUp();89const signUpUser = async () => {10const response = await signUp11?.create({12identifier: "example@email.com",13password: "Tester01!",14})15.then((res) => console.log("response", res))16.catch((err) => setError(err.errors[0].message));17};1819return (20<div>21<button onClick={signUpUser}>Sign Up</button>22<div>23<error>{error}</error>24</div>25</div>26);27}
1const { client } = window.Clerk;23const signUp = await client.signUp.create({4identifier: "example@email.com",5password: "Tester01!",6})7.then((res) => console.log("response", res))8.catch((err) => setError(err.errors[0].message));9
Errors returned from the signIn() function are handled in a similar way:
1import { useState } from "react";2import { useSignIn } from "@clerk/clerk-react";34function Example() {5const [error, setError] = useState(null);67const { signIn } = useSignIn();89const signInUser = async () => {10const response = await signIn.create({11identifier: emailAddress,12password,13})14.then((result) => console.log("result", result))15.catch((err) => setError("error", err.errors[0].message));16};1718return (19<div>20<button onClick={signInUser}>Sign In</button>21<div>22<error>{error}</error>23</div>24</div>25);26}
1const { client } = window.Clerk;23const signIn = await client.signIn.create({4identifier: emailAddress,5password,6})7.then((result) => console.log("result", result))8.catch((err) => console.error("error", err.errors[0].message));