diff --git a/src/components/TileGrid/InfoTile.tsx b/src/components/TileGrid/InfoTile.tsx index 33421776..868f3a67 100644 --- a/src/components/TileGrid/InfoTile.tsx +++ b/src/components/TileGrid/InfoTile.tsx @@ -55,15 +55,17 @@ const InfoTile = (params: InfoTileProps) => { ))} - - {!shouldShowMore ? "Show more" : "Show less"} -

- } - > - {moreInformation} -
+ {moreInformation ? ( + + {!shouldShowMore ? "Show more" : "Show less"} +

+ } + > + {moreInformation} +
+ ) : null} ); };