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

Incorrect function Call inside /frontend/components/Input.js/handleChangeProposalDescription function #17

Open
elvisMat opened this issue Sep 26, 2023 · 0 comments

Comments

@elvisMat
Copy link

elvisMat commented Sep 26, 2023

Problem

From line 53 in Input.js file, we have the following code:

  const handleChangeProposalDescription = (event) => {
    setCarSize(event.target.value);
  };

Of which i belive is wrong

Suggested fix

I believe the correct code should be

const handleChangeProposalDescription = (event) => {
    // setCarSize(event.target.value);
    setProposalDescription(event.target.value)
  };
@elvisMat elvisMat changed the title Incorrect Method Call in /frontend/components/Input.js/handleChangeProposalDescription() method Incorrect Method Call in /frontend/components/Input.js/handleChangeProposalDescription function Sep 26, 2023
@elvisMat elvisMat changed the title Incorrect Method Call in /frontend/components/Input.js/handleChangeProposalDescription function Incorrect function Call inside /frontend/components/Input.js/handleChangeProposalDescription function Sep 26, 2023
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

No branches or pull requests

1 participant