diff --git a/apps/web/pages/documents/[id]/recipients.tsx b/apps/web/pages/documents/[id]/recipients.tsx
index bf15aee21..fefa9a27a 100644
--- a/apps/web/pages/documents/[id]/recipients.tsx
+++ b/apps/web/pages/documents/[id]/recipients.tsx
@@ -226,9 +226,7 @@ const RecipientsPage: NextPageWithLayout = (props: any) => {
className="mt-3 inline-block flex-shrink-0 rounded-full bg-yellow-200 px-2 py-0.5 text-xs font-medium text-gray-800">
Not Sent
- ) : (
- <>>
- )}
+ ) : null}
{item.sendStatus === "SENT" && item.readStatus !== "OPENED" ? (
{
Sent
- ) : (
- <>>
- )}
+ ) : null}
{item.readStatus === "OPENED" && item.signingStatus === "NOT_SIGNED" ? (
{
Seen
- ) : (
- <>>
- )}
+ ) : null}
{item.signingStatus === "SIGNED" ? (
{
Signed
- ) : (
- <>>
- )}
+ ) : null}
{props.document.status !== DocumentStatus.COMPLETED && (