From 9f7f31e1b8eb77921abd867f7f2b2e300a2f6ba1 Mon Sep 17 00:00:00 2001 From: Kenneth Jannette Date: Thu, 7 Mar 2024 15:51:24 -0600 Subject: [PATCH] more --- src/Components/Document/DocumentListPage.js | 3 +-- src/pageElements/Cards.js | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/src/Components/Document/DocumentListPage.js b/src/Components/Document/DocumentListPage.js index 7547c76..65dcac9 100644 --- a/src/Components/Document/DocumentListPage.js +++ b/src/Components/Document/DocumentListPage.js @@ -149,7 +149,6 @@ const DocumentListPage = ({ perPage }) => { caseId, documentType ) { - console.log("documentType in handleNavigate", documentType); const _id = String(documentId); const _resGen = String(responseGenerations); const parentCaseId = String(caseId); @@ -183,7 +182,7 @@ const DocumentListPage = ({ perPage }) => { if (!group) { return null; } - console.log("allDocs", allDocs); + const DesktopContent = () => { return ( <> diff --git a/src/pageElements/Cards.js b/src/pageElements/Cards.js index 60c94c2..7fc3033 100644 --- a/src/pageElements/Cards.js +++ b/src/pageElements/Cards.js @@ -281,8 +281,7 @@ export const DocCard = (props) => { const now = new Date().getTime(); const uploadedAt = new Date(createdAtTime * 1000); const isReportable = Math.round((now - uploadedAt) / 60 / 1000) > 15; - console.log("responseGenerations", responseGenerations); - console.log("docType", docType); + const disabled = docType ? false : true; const tooltipText = "Parsing is taking a bit longer than usual. This usually resolves within 15 minutes. If it does not, click “report” and support will address the issue within 24 hours.";