Skip to content

Commit

Permalink
fix: spell "metres" not "meters" in NumberInput modal (#3218)
Browse files Browse the repository at this point in the history
  • Loading branch information
jessicamcinchak authored and RODO94 committed Jun 4, 2024
1 parent cb67c77 commit 0f17799
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ import { setup } from "testUtils";

import DateInputComponent from "./Editor";

// double regular timeout for tests in this file, as they regularly timeout on CI
jest.setTimeout(10000);

const minError = "Min must be less than max";
const maxError = "Max must be greater than min";
const invalidError = "Enter a valid date in DD.MM.YYYY format";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ export default function NumberInputComponent(props: Props): FCReturn {
<Input
name="units"
value={formik.values.units}
placeholder="e.g. square meters"
placeholder="eg square metres"
onChange={formik.handleChange}
/>
</InputRowItem>
Expand Down

0 comments on commit 0f17799

Please sign in to comment.