Skip to content

Commit

Permalink
fix: form labels
Browse files Browse the repository at this point in the history
  • Loading branch information
ledouxm committed Aug 26, 2024
1 parent d48a0e1 commit c9d866e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/frontend/src/components/chips/SpaceTypeChips.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export const SpaceTypeChips = (props: FlexProps & { disabled?: boolean }) => {
value={selected}
{...props}
onChange={(values) => form.setValue("projectSpaceType", values.join(","))}
label="Type d'espace"
label="Type d'espace protégé"
/>
);
};
4 changes: 2 additions & 2 deletions packages/frontend/src/features/InfoForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ export const InfoForm = () => {
<Input
className={css({ flex: { base: "none", lg: 2 }, mt: "16px", mb: { base: "24px", lg: undefined } })}
disabled={isFormDisabled}
label="Adresse du projet"
label="Adresse"
nativeInputProps={form.register("applicantAddress")}
/>
<Stack gap={{ base: "0", lg: "16px" }} direction={{ base: "column", lg: "row" }}>
Expand All @@ -165,7 +165,7 @@ export const InfoForm = () => {
<Input
className={css({ flex: { base: "none", lg: 1 }, mb: "16px" })}
disabled={isFormDisabled}
label="Référence cadastrale du projet"
label="Référence cadastrale"
nativeInputProps={form.register("projectCadastralRef")}
/>
<Box
Expand Down

0 comments on commit c9d866e

Please sign in to comment.