From a8bfd9f4cb5b38757fe917bf9026609a5c93ddd5 Mon Sep 17 00:00:00 2001 From: rizky Date: Tue, 5 Nov 2024 00:52:49 -0700 Subject: [PATCH] fix --- comps/form/field/FieldInput.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/comps/form/field/FieldInput.tsx b/comps/form/field/FieldInput.tsx index 03ec4b9..c55e8af 100755 --- a/comps/form/field/FieldInput.tsx +++ b/comps/form/field/FieldInput.tsx @@ -24,6 +24,7 @@ export const FieldInput: FC<{ : typeof field.prefix === "string" ? field.prefix : null; + const suffix = typeof field.suffix === "function" ? field.suffix()