From 026ea4450eef4550b39c0c82ce23231e0d38b29a Mon Sep 17 00:00:00 2001 From: proddy Date: Sat, 8 Nov 2025 15:26:54 +0100 Subject: [PATCH] error is color red --- interface/src/components/inputs/ValidatedTextField.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/interface/src/components/inputs/ValidatedTextField.tsx b/interface/src/components/inputs/ValidatedTextField.tsx index b7ccd3ae6..ad1b87f37 100644 --- a/interface/src/components/inputs/ValidatedTextField.tsx +++ b/interface/src/components/inputs/ValidatedTextField.tsx @@ -23,7 +23,9 @@ const ValidatedTextField: FC = ({ <> {errors?.map((e) => ( - {e.message} + + {e.message} + ))} );