diff --git a/react-ui/src/components/freeagents/FreeAgentCards.js b/react-ui/src/components/freeagents/FreeAgentCards.js
index 2f9680648..839f5667c 100644
--- a/react-ui/src/components/freeagents/FreeAgentCards.js
+++ b/react-ui/src/components/freeagents/FreeAgentCards.js
@@ -1,13 +1,12 @@
import React, { useState } from "react"
-import { Table, Card, Image, Icon, Flag, Button } from "semantic-ui-react"
-import { countries } from "../../utils/lists"
+import { Card, Image, Icon, Flag, Button } from "semantic-ui-react"
import InfiniteScroll from "react-infinite-scroller"
import { Link } from "react-router-dom"
-import FATableRows from "./FATableRows"
import WpnImage from "../common/WpnImage"
import RoleIcons from "./RoleIcons"
import VCIcon from "./VCIcon"
+import { countries } from "../../utils/lists"
const FreeAgentCard = ({ freeAgent }) => {
const [expanded, setExpanded] = useState(false)
@@ -100,30 +99,62 @@ const FreeAgentCard = ({ freeAgent }) => {
)}
{expanded && (
<>
-
-
- {activity}
-
-
-
- {past_experience}
-
-
-
- {looking_for}
-
-
-
- {description}
-
+ {activity && (
+ <>
+
+
+ {activity}
+
+ >
+ )}
+ {past_experience && (
+ <>
+
+
+ {past_experience}
+
+ >
+ )}
+ {looking_for && (
+ <>
+
+
+ {looking_for}
+
+ >
+ )}
+ {description && (
+ <>
+
+
+ {description}
+
+ >
+ )}