-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Specify address AND CITY of organization
- Loading branch information
Showing
3 changed files
with
4 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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"; | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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"); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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"; | ||
|
||
|
@@ -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} | ||
|