diff --git a/app/soapbox/components/ui/streamfield/streamfield.tsx b/app/soapbox/components/ui/streamfield/streamfield.tsx index 48e8d43ba..902ae2873 100644 --- a/app/soapbox/components/ui/streamfield/streamfield.tsx +++ b/app/soapbox/components/ui/streamfield/streamfield.tsx @@ -65,22 +65,24 @@ const Streamfield: React.FC = ({ {hint && {hint}} - - {values.map((value, i) => ( - - - {onRemoveItem && ( - onRemoveItem(i)} - title={intl.formatMessage(messages.remove)} - /> - )} - - ))} - + {(values.length > 0) && ( + + {values.map((value, i) => ( + + + {onRemoveItem && ( + onRemoveItem(i)} + title={intl.formatMessage(messages.remove)} + /> + )} + + ))} + + )} {onAddItem && (