Skip to content

Commit

Permalink
Specify address AND CITY of organization
Browse files Browse the repository at this point in the history
  • Loading branch information
ColinToft committed Sep 3, 2024
1 parent f222b96 commit 6fa3913
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion frontend/src/components/auth/Join.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ const PLACEHOLDER_MOBILE_EXAMPLE_FULL_NAME = "Full Name (Jane Doe)";
const PLACEHOLDER_MOBILE_EXAMPLE_EMAIL = "Email ([email protected])";
const PLACEHOLDER_MOBILE_EXAMPLE_PHONE_NUMBER = "Phone Number (111-222-3333)";
const PLACEHOLDER_MOBILE_EXAMPLE_ORG_NAME = "Name of organization";
const PLACEHOLDER_MOBILE_EXAMPLE_ADDRESS = "Address of organization";
const PLACEHOLDER_MOBILE_EXAMPLE_ADDRESS = "Address and city of organization";
const PLACEHOLDER_MOBILE_EXAMPLE_NUM_KIDS = "Number of kids";
const PLACEHOLDER_MOBILE_EXAMPLE_DESCRIPTION = "Description of organization";

Expand Down
2 changes: 1 addition & 1 deletion frontend/src/pages/MealRequestForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ const PLACEHOLDER_MOBILE_EXAMPLE_FULL_NAME = "Full Name (Jane Doe)";
const PLACEHOLDER_MOBILE_EXAMPLE_EMAIL = "Email ([email protected])";
const PLACEHOLDER_MOBILE_EXAMPLE_PHONE_NUMBER = "Phone Number (111-222-3333)";
const PLACEHOLDER_MOBILE_EXAMPLE_ORG_NAME = "Name of organization";
const PLACEHOLDER_MOBILE_EXAMPLE_ADDRESS = "Address of organization";
const PLACEHOLDER_MOBILE_EXAMPLE_ADDRESS = "Address and city of organization";

const MealRequestForm = () => {
const [role, setRole] = useState<Role>("ASP");
Expand Down
4 changes: 2 additions & 2 deletions frontend/src/pages/Settings.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ const PLACEHOLDER_MOBILE_EXAMPLE_EMAIL = "Email ([email protected])";
const PLACEHOLDER_MOBILE_EXAMPLE_PHONE_NUMBER = "Phone Number (111-222-3333)";
const PLACEHOLDER_MOBILE_EXAMPLE_ORG_NAME = "Name of organization";
const PLACEHOLDER_MOBILE_EXAMPLE_NUMBER_OF_KIDS = "Number of kids";
const PLACEHOLDER_MOBILE_EXAMPLE_ADDRESS = "Address of organization";
const PLACEHOLDER_MOBILE_EXAMPLE_ADDRESS = "Address and city of organization";
const PLACEHOLDER_MOBILE_EXAMPLE_ORG_DESCRIPTION =
"Description of organization";

Expand Down Expand Up @@ -548,7 +548,7 @@ const Settings = (): React.ReactElement => {
isInvalid={attemptedSubmit && organizationAddress === ""}
>
<FormLabel variant="form-label-bold">
Address of organization
Address and city of organization
</FormLabel>
<Input
value={organizationAddress}
Expand Down

0 comments on commit 6fa3913

Please sign in to comment.