diff --git a/apps/web/pages/documents.tsx b/apps/web/pages/documents.tsx index 038c37933..f917fd6d6 100644 --- a/apps/web/pages/documents.tsx +++ b/apps/web/pages/documents.tsx @@ -26,7 +26,7 @@ const DocumentsPage: NextPageWithLayout = (props: any) => { const statusFilters = [ { label: "All", value: "ALL" }, { label: "Draft", value: "DRAFT" }, - { label: "Pending", value: "PENDING" }, + { label: "Waiting for others", value: "PENDING" }, { label: "Completed", value: "COMPLETED" }, ]; const createdFilter = [ @@ -424,7 +424,7 @@ function formatDocumentStatus(status: DocumentStatus) { return "Draft"; case DocumentStatus.PENDING: - return "Pending"; + return "Waiting for others"; case DocumentStatus.COMPLETED: return "Completed"; diff --git a/apps/web/pages/documents/[id]/index.tsx b/apps/web/pages/documents/[id]/index.tsx index c0c6ca213..6098d0810 100644 --- a/apps/web/pages/documents/[id]/index.tsx +++ b/apps/web/pages/documents/[id]/index.tsx @@ -100,7 +100,7 @@ function formatDocumentStatus(status: DocumentStatus) { return "Draft"; case DocumentStatus.PENDING: - return "Pending"; + return "Waiting for others"; case DocumentStatus.COMPLETED: return "Completed";