diff --git a/frontend/components/label-wrapper.tsx b/frontend/components/label-wrapper.tsx index ab785c5c..691b7726 100644 --- a/frontend/components/label-wrapper.tsx +++ b/frontend/components/label-wrapper.tsx @@ -10,18 +10,25 @@ export function LabelWrapper({ id, required, flex, + start, children, }: { label: string; description?: string; - helperText?: string; + helperText?: string | React.ReactNode; id: string; required?: boolean; flex?: boolean; + start?: boolean; children: React.ReactNode; }) { return ( -
{description}
)}