more
This commit is contained in:
@@ -171,7 +171,7 @@ const DocumentListPage = ({ perPage }) => {
|
||||
if (!group) {
|
||||
return null;
|
||||
}
|
||||
|
||||
console.log("allDocs", allDocs);
|
||||
const DesktopContent = () => {
|
||||
return (
|
||||
<>
|
||||
@@ -201,17 +201,17 @@ const DocumentListPage = ({ perPage }) => {
|
||||
<DocCard
|
||||
key={`doccard-${i}`}
|
||||
title={doc.docTitle}
|
||||
parentCaseNumber={doc.parentCaseNumber}
|
||||
parentCaseName={doc.parentCaseName}
|
||||
parentCaseId={doc.parentCaseId}
|
||||
createdAt={doc.createdAt}
|
||||
docType={doc.docType}
|
||||
documentId={doc.documentId}
|
||||
dateServed={doc.dateServed}
|
||||
parentCaseNumber={doc?.parentCaseNumber}
|
||||
parentCaseName={doc?.parentCaseName}
|
||||
parentCaseId={doc?.parentCaseId}
|
||||
createdAt={doc?.createdAt}
|
||||
docType={doc?.docType}
|
||||
documentId={doc?.documentId}
|
||||
dateServed={doc?.dateServed}
|
||||
confirmDelete={confirmDelete}
|
||||
handleNavigate={handleNavigate}
|
||||
displayDeleteButton={true}
|
||||
responseGenerations={doc.responseGenerations}
|
||||
responseGenerations={doc?.responseGenerations}
|
||||
/>
|
||||
))
|
||||
) : (
|
||||
|
||||
Reference in New Issue
Block a user