Skip to content

Commit

Permalink
fixed placeholder
Browse files Browse the repository at this point in the history
  • Loading branch information
noWarm committed Feb 15, 2023
1 parent ffd5509 commit 71a2f30
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/pages/registerPetSitter.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ export default function RegisterPetSitter() {
defaultValue={page2hotel.hotelName}
register={register}
validationRules={{ required: true }}
placeholder="Letsingitout resort and spa"
placeholder="Letsing It Out Resort and Spa"
type="text"
/>
{errors.hotelname && (
Expand All @@ -251,7 +251,7 @@ export default function RegisterPetSitter() {
defaultValue={page2hotel.businessLicenseUri}
register={register}
validationRules={{ required: true }}
placeholder="I dont even know what to put here :<"
placeholder="Your business license"
type="text"
/>
{errors.businessLicenseUri && (
Expand Down Expand Up @@ -439,7 +439,7 @@ export default function RegisterPetSitter() {
defaultValue={page1.username}
register={register}
validationRules={{ required: true }}
placeholder="goddamn"
placeholder="your username"
type="text"
/>
{errors.username && (
Expand All @@ -453,7 +453,7 @@ export default function RegisterPetSitter() {
defaultValue={page1.email}
register={register}
validationRules={{ required: true }}
placeholder="gg@ggwp"
placeholder="[email protected]"
type="email"
/>
{errors.email && (
Expand Down

0 comments on commit 71a2f30

Please sign in to comment.