This commit is contained in:
Kenneth Jannette
2024-02-25 13:58:30 -06:00
6 changed files with 50 additions and 9 deletions

View File

@@ -281,10 +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(
"(now - uploadedAt) / 60 / 1000)",
(now - uploadedAt) / 60 / 1000
);
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.";

View File

@@ -22,7 +22,7 @@ const Radio = (props) => {
const index = isAnnual === 1 ? Number("1") : Number("0");
const upgradeClass = isUpgrade ? "upgrade" : "not-upgrade";
console.log("activeRadioOption", activeRadioOption);
return (
<div className="radio-container">
<div className="radio-option-container" key={name}>