We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 70e17de commit 1d1d231Copy full SHA for 1d1d231
govtool/frontend/src/components/organisms/UncontrolledImageInput.tsx
@@ -57,8 +57,8 @@ export const UncontrolledImageInput = <T extends FieldValues>({
57
borderRadius: "50px",
58
height: "50px",
59
border: "1px solid",
60
- borderColor: fieldState.error?.message ? "red" : "#6F99FF",
61
- backgroundColor: fieldState.error?.message ? "#FAEAEB" : "white",
+ borderColor: fieldState.error ? "red" : "#6F99FF",
+ backgroundColor: fieldState.error ? "#FAEAEB" : "white",
62
boxSizing: "border-box",
63
margin: 0,
64
display: "block",
0 commit comments