diff --git a/public/favicon.ico b/public/favicon.ico
new file mode 100644
index 0000000..088c9ae
Binary files /dev/null and b/public/favicon.ico differ
diff --git a/public/index.html b/public/index.html
index e98c96a..82062ab 100644
--- a/public/index.html
+++ b/public/index.html
@@ -4,8 +4,50 @@
-
+
+
+
+
+
+
+
+
+
+
+
+
+
-
Novodraft
+
+ Novodraft Legal AI-Assisted Discovery Response And Request Drafting For
+ Attorneys
+
diff --git a/src/Components/Document/DocEditPage.js b/src/Components/Document/DocEditPage.js
index 78c3120..08a440f 100644
--- a/src/Components/Document/DocEditPage.js
+++ b/src/Components/Document/DocEditPage.js
@@ -273,7 +273,6 @@ const DocEditPage = () => {
return response.json();
})
.then((data) => {
- console.log("data in genResponseFromArrayCombined", data);
const respArray = data[0].responses;
const result = respArray?.map((item, index) => {
let obj = {};
@@ -371,7 +370,6 @@ const DocEditPage = () => {
method: "GET",
})
.then((response) => {
- console.log(response);
setIsBusy(false);
})
.catch((err) => {
diff --git a/src/Components/SignupPage/SignupPage.js b/src/Components/SignupPage/SignupPage.js
index a111dd9..e28b341 100644
--- a/src/Components/SignupPage/SignupPage.js
+++ b/src/Components/SignupPage/SignupPage.js
@@ -51,6 +51,7 @@ const SignupPage = () => {
);
// const [showSelectPlan, setShowSelectPlan] = useState(true);
+
const [activeRadioOption, setActiveRadioOption] = useState("partner");
const [selectedPlan, setSelectedPlan] = useState([signupRadioFields[1]]);
const stripe = new Stripe(stripeApiKey);
diff --git a/src/pageElements/Cards.js b/src/pageElements/Cards.js
index 7d990a6..9c701a2 100644
--- a/src/pageElements/Cards.js
+++ b/src/pageElements/Cards.js
@@ -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.";
diff --git a/src/pageElements/Radio.js b/src/pageElements/Radio.js
index 55990e6..59d6b71 100644
--- a/src/pageElements/Radio.js
+++ b/src/pageElements/Radio.js
@@ -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 (