This commit is contained in:
Kenneth Jannette
2024-02-25 12:25:55 -06:00
parent 8aaa759631
commit 29fdf2ceb2
2 changed files with 2 additions and 4 deletions

View File

@@ -17,7 +17,7 @@ const AccountPage = () => {
const appUserId = group ? group.appUserId : null; const appUserId = group ? group.appUserId : null;
const [showModal, setShowModal] = useState(false); const [showModal, setShowModal] = useState(false);
const subscriptionPlan = group?.subscriptionPlan[0].label; const subscriptionPlan = group?.subscriptionPlan[0].label;
console.log("subscriptionPlan", subscriptionPlan);
const apiUrl = const apiUrl =
process.env.NODE_ENV === "development" process.env.NODE_ENV === "development"
? process.env.REACT_APP_API_DEV ? process.env.REACT_APP_API_DEV

View File

@@ -371,7 +371,6 @@ const DocEditPage = () => {
method: "GET", method: "GET",
}) })
.then((response) => { .then((response) => {
console.log(response);
setIsBusy(false); setIsBusy(false);
}) })
.catch((err) => { .catch((err) => {
@@ -589,8 +588,7 @@ const DocEditPage = () => {
fetchedCase?.clientPosition == "Defendant" fetchedCase?.clientPosition == "Defendant"
? fetchedCase?.defendantParties ? fetchedCase?.defendantParties
: fetchedCase?.plaintiffParties; : fetchedCase?.plaintiffParties;
console.log("parsedRogs", parsedRogs);
console.log("responses", responses);
const editingContent = () => { const editingContent = () => {
return ( return (
<> <>