diff --git a/src/FilterLists.Web/ClientApp/modules/home/components/detailsExpanderContainer/maintainersInfoCard/MaintainerAdditionalLists.tsx b/src/FilterLists.Web/ClientApp/modules/home/components/detailsExpanderContainer/maintainersInfoCard/MaintainerAdditionalLists.tsx index f6e6fc89c..c785391c8 100644 --- a/src/FilterLists.Web/ClientApp/modules/home/components/detailsExpanderContainer/maintainersInfoCard/MaintainerAdditionalLists.tsx +++ b/src/FilterLists.Web/ClientApp/modules/home/components/detailsExpanderContainer/maintainersInfoCard/MaintainerAdditionalLists.tsx @@ -7,14 +7,16 @@ interface IProps { } export const MaintainerAdditionalLists = (props: IProps) => { - return props.additionalLists.length > 0 - ?
-
-

More by {props.name}:

- -
-
- : null; + return
+ {props.additionalLists.length > 0 + ?
+ +

More by {props.name}:

+ + +
+ : null} +
; }; \ No newline at end of file