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

156
Views
Trouble clearing react.useState with clear button

I am finding it difficult to clear this file input that I am setting to setImportFile useState. This is the useState I declared

const [importFile, setImportFile] = React.useState<File | null>();
const [fileError, setFileError] = React.useState<string>("");

I clear two useState variables in this const method but only one gets cleared which is setFileError.

  const clearModal = () => {
        setImportFile(null);
        setFileError("");
    };

I use setImportFile in this method

 const onChangeImportFile = (e: React.ChangeEvent<HTMLInputElement>) => {
        e.preventDefault();
        setImportFile(e.currentTarget.files ? e.currentTarget.files[0] : null);
        setSaving(true);
    };

This is my render in which I use the clear button and only the error would clear out but the file input will not clear out. I want to empty everything in the modal

 <Form.Control
     type="file"
     accept='.csv, .xls, .xlsx'
     required
     className="primary mb-3"
     name=""
     onChange={onChangeImportFile}
/>
  <Button variant="secondary" onClick={clearModal} > Clear </Button>
about 4 years ago · Juan Pablo Isaza
2 answers
Answer question

0

I think you need to pass the state value to the Form.Control, to make it controlled (otherwise it's not getting its value from the state).

<Form.Control
  type="file"
  accept='.csv, .xls, .xlsx'
  required
  className="primary mb-3"
  name=""
  value={importFile}
  onChange={onChangeImportFile}
/>
about 4 years ago · Juan Pablo Isaza Report

0

You don't need to set File | null as SetStateAction will be set to undefined.

Try this:

const [importFile, setImportFile] = React.useState<File>();
setImportFile(undefined);
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!