Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

242
Views
How to display the Chakra UI 'Alert'?

I'm trying to display the Alert message using Chakra Ui but it's not displaying. Please help.

.catch((error) => {
            const errorCode = error.code;
            const errorMessage = error.message;
            console.log(errorMessage, errorCode);
            <Alert status='error'>
                <AlertIcon />
                <AlertTitle>Error!</AlertTitle>
                <AlertDescription>Email/ Password Did Not Matched.</AlertDescription>
            </Alert>
        });
about 4 years ago · Juan Pablo Isaza
1 answers
Answer question

0

Components like <Alert /> can't be added to the catch of a promise. You have to conditionally render the alert in the return statement of a component like so:

function LoginExample() {
  const [showAlert, setShowAlert] = useState(false)

  const handleLogin = (email, password) => {
    loginUser(email, password)
      .then((res) => /* handle success */)
      .catch((error) => {
        const errorCode = error.code;
        const errorMessage = error.message;
        console.log(errorMessage, errorCode);

        setShowAlert(true)
      })
  }

  return (
    <>
      {showAlert && (
        <Alert status='error'>
          <AlertIcon />
          <AlertTitle>Error!</AlertTitle>
          <AlertDescription>Email/ Password Did Not Matched.</AlertDescription>
        </Alert>
      )}

      {/* rest of jsx */}
    </>
  )
}

about 4 years ago · Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!