Skip to content

Commit

Permalink
fix(Infoform): fixing eslint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
Christiantyemele committed May 6, 2024
1 parent 430addf commit 500d2eb
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/components/InfoForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ export const InfoForm = () => {
</label>
<div>
<textarea
rows="3"
cols="30"
rows={parseInt('3')}
cols={parseInt('30')}
id="ScanDescription"
name="ScanDescription"
onChange={formik.handleChange}
Expand All @@ -53,8 +53,8 @@ export const InfoForm = () => {
</label>
<div>
<textarea
rows="2"
cols="30"
rows={parseInt('2')}
cols={parseInt('30')}
id="Others"
name="Others"
onChange={formik.handleChange}
Expand Down

0 comments on commit 500d2eb

Please sign in to comment.