From d5cf03376f3eaf17946cf9d9a24097d965ede274 Mon Sep 17 00:00:00 2001 From: Sam Ferrero Date: Wed, 8 Nov 2023 13:44:47 +0000 Subject: [PATCH] chore: comments --- .../src/components/Form/FormFieldWrapper/FormFieldWrapper.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/libs/react-ui/src/components/Form/FormFieldWrapper/FormFieldWrapper.tsx b/packages/libs/react-ui/src/components/Form/FormFieldWrapper/FormFieldWrapper.tsx index 8ea0ff68fc..12fe05618d 100644 --- a/packages/libs/react-ui/src/components/Form/FormFieldWrapper/FormFieldWrapper.tsx +++ b/packages/libs/react-ui/src/components/Form/FormFieldWrapper/FormFieldWrapper.tsx @@ -13,8 +13,8 @@ import { statusVariant } from './FormFieldWrapper.css'; export interface IFormFieldWrapperProps extends Omit { - children: // combine types for all input types - | FunctionComponentElement + children: + | FunctionComponentElement | FunctionComponentElement[]; status?: FormFieldStatus; disabled?: boolean;