Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

setState change to correct manner. update useStep.tsx #4310

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

karthik11135
Copy link

Changed the way setState is used. When the state is dependent upon on the val, function format must be used.

Comment on lines 6 to 8
const prevStep = () => {
if (step > 0) setStep(step - 1);
if (step > 0) setStep((prevStep) => prevStep - 1);
};
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

  const prevStep = () => setStep((prevStep) => prevStep > 0 ? prevStep - 1 : prevStep);

React will not re-render if the state transition results in the same value before and after.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants