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

117
Views
Prevent a component rendering inside formik

I want to disable the rendering of a component inside react.js formik library here is an example of code structure I have currently

<formik 
  initialValue={{
    "show":false
  }}>
  return (
    <button name="showbtn" onclick={setFieldValue("show",true)}/>
     {values?.show ? 
     (
       <Text>Hello</Text>
     ) : 
    null}
    <Rerenderedcomponent />  //no prop passed here
  )
</formik>

And here is an example of my Rerendered component file

function Rerenderedcomponent() 
{
  const callingAPI = useCallback(()=>response,[])
}

export default React.memo(Rerenderedcomponent)

Now as I am clicking on the button(name showbtn) formik "show" field value is getting updated but my component(Rerenderedcomponent) is also getting rerendered & hence the api in it is getting called again

I tried by setting enableReinitialize={false} but nothing works

Is it possible to prevent this rerendering of the component(Rerenderedcomponent) on formik field update

PS:- The component should remain inside formik tag only

about 4 years ago · Juan Pablo Isaza
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!