+
+ Active interests
+
+ {isLoading ? (
+
+
+ Loading…
+
+ ) : isError ? (
+ Failed to load interests.
+ ) : (data?.data ?? []).length === 0 ? (
+ No active interests.
+ ) : (
+
+ {(data?.data ?? []).map((row) => (
+ -
+
+
+ {row.isPrimary ? (
+
+ ) : null}
+ {row.clientName}
+
+
+ {stageLabel(row.pipelineStage)}
+
+
+
+ ))}
+
+ )}
+
+