This commit is contained in:
Kenneth Jannette
2024-03-02 14:24:21 -06:00
parent 84e73ee818
commit d831c56a0c

View File

@@ -92,6 +92,7 @@ const RequestEditPage = () => {
// NEVER CHANGE THIS: // NEVER CHANGE THIS:
return { showInputEle: false, resp: item.text, index: index }; return { showInputEle: false, resp: item.text, index: index };
}); });
console.log("reqwuests in useEffect", requests);
setRequests(resp); setRequests(resp);
}) })
.catch((err) => console.log(err)); .catch((err) => console.log(err));
@@ -328,7 +329,7 @@ const RequestEditPage = () => {
fetchedCase?.clientPosition === "Defendant" fetchedCase?.clientPosition === "Defendant"
? fetchedCase?.plaintiffParties ? fetchedCase?.plaintiffParties
: fetchedCase?.defendantParties; : fetchedCase?.defendantParties;
console.log("requests", requests);
const editingContent = () => { const editingContent = () => {
return ( return (
<> <>
@@ -438,10 +439,7 @@ const RequestEditPage = () => {
) : ( ) : (
<div className="docedit-errstate-container"> <div className="docedit-errstate-container">
<div className="nodocs-text-container"> <div className="nodocs-text-container">
<p> <p> Content for this document cannot be displayed at this time.</p>
{" "}
Response content for this document cannot be displayed at this time.
</p>
<p>Support has been notified and will respond within 24 hours.</p> <p>Support has been notified and will respond within 24 hours.</p>
<Link to="/dashboard">Return to Dashboard</Link> <Link to="/dashboard">Return to Dashboard</Link>
</div> </div>