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 May 31, 2024
1 parent d811285 commit ac9fb31
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 ac9fb31

Please sign in to comment.