Skip to content

Commit

Permalink
bg light
Browse files Browse the repository at this point in the history
  • Loading branch information
IngridFuentes committed Feb 16, 2024
1 parent 4f2b920 commit 52131e3
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/components/forms/mentor-form.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ const MentorForm = () => {
<Input
id="name"
placeholder="Jody Grinder"
bg="light"
feedbackText={errors?.name?.message}
state={hasKey(errors, "name") ? "error" : "success"}
showState={!!hasKey(errors, "name")}
Expand Down Expand Up @@ -97,6 +98,7 @@ const MentorForm = () => {
<Input
id="branch-of-service"
placeholder="Civilian"
bg="light"
feedbackText={errors?.["branch-of-service"]?.message}
state={
hasKey(errors, "branch-of-service")
Expand All @@ -119,6 +121,7 @@ const MentorForm = () => {
<Input
id="technical-expertise"
placeholder="Javascript, React, Node, etc."
bg="light"
feedbackText={errors?.["technical-expertise"]?.message}
state={
hasKey(errors, "technical-expertise")
Expand All @@ -141,6 +144,7 @@ const MentorForm = () => {
<Input
id="github-portfolio-or-linkedin"
placeholder="github.com/jody-fake-profile"
bg="light"
feedbackText={
errors?.["github-portfolio-or-linkedin"]?.message
}
Expand Down Expand Up @@ -168,6 +172,7 @@ const MentorForm = () => {
<Input
id="location"
placeholder="Washington, DC"
bg="light"
feedbackText={errors?.location?.message}
state={hasKey(errors, "location") ? "error" : "success"}
showState={!!hasKey(errors, "location")}
Expand All @@ -186,6 +191,7 @@ const MentorForm = () => {
<Input
id="employer-restrictions"
placeholder="None"
bg="light"
feedbackText={
errors?.["employer-restrictions"]?.message
}
Expand Down

0 comments on commit 52131e3

Please sign in to comment.