diff --git a/apps/web/package.json b/apps/web/package.json
index e2f379fe7..e2e1b19c1 100644
--- a/apps/web/package.json
+++ b/apps/web/package.json
@@ -11,6 +11,7 @@
},
"dependencies": {
"@documenso/prisma": "*",
+ "@documenso/ui": "*",
"@headlessui/react": "^1.7.4",
"@heroicons/react": "^2.0.13",
"@tailwindcss/forms": "^0.5.3",
diff --git a/apps/web/pages/documents.tsx b/apps/web/pages/documents.tsx
index eedeec8a5..68fb54773 100644
--- a/apps/web/pages/documents.tsx
+++ b/apps/web/pages/documents.tsx
@@ -132,7 +132,7 @@ const DocumentsPage: NextPageWithLayout = (props: any) => {
{document.Recipient.map((item: any) => (
-
+
{item.sendStatus === "SENT" &&
item.readStatus !== "OPENED" &&
item.signingStatus !== "SIGNED" ? (
diff --git a/apps/web/pages/documents/[id]/index.tsx b/apps/web/pages/documents/[id]/index.tsx
index e09740269..b660bb332 100644
--- a/apps/web/pages/documents/[id]/index.tsx
+++ b/apps/web/pages/documents/[id]/index.tsx
@@ -96,19 +96,17 @@ const DocumentsDetailPage: NextPageWithLayout = (props: any) => {
-
-
Add Recipients
-
+
|