remove <fragment> entirely

This commit is contained in:
Ed Chalstrey 2022-06-06 10:14:27 +01:00
parent d332cc03b4
commit c126400cdc

View File

@ -20,7 +20,6 @@ const TeamView: React.FunctionComponent<CategoryViewProps> = (props) => {
const currentBuildingConstructionYear = building.date_year || undefined;
return (
<form>
<Fragment>
<InfoBox msg="Can you help us capture information on who built the current building?"></InfoBox>
<SelectDataEntry
title={dataFields.is_extension.title}
@ -125,7 +124,6 @@ const TeamView: React.FunctionComponent<CategoryViewProps> = (props) => {
onChange={props.onChange}
mode={props.mode}
/>
</Fragment>
</form>
);
};