This commit is contained in:
Kenneth Jannette
2024-02-17 16:13:27 -06:00
parent f94d018f6e
commit 3ca7110688

View File

@@ -39,6 +39,7 @@ const DocEditPage = () => {
const [isLoading, setIsLoading] = useState(false);
const [isReport, setIsReport] = useState(false);
const [issueText, setIssueText] = useState("");
const [showErrorModal, setShowErrorModal] = useState(false);
const [responsesCreated, setResponsesCreated] = useState(
parseInt(responseGenerations)
);
@@ -53,7 +54,7 @@ const DocEditPage = () => {
const usState = group.state[0] ? group.state[0].code : "ny";
const zipCode = group ? group.zipCode : null;
const telephone = group ? group.telephone : null;
console.log("state", state);
const apiUrl =
process.env.NODE_ENV === "development"
? process.env.REACT_APP_API_DEV
@@ -361,7 +362,7 @@ const DocEditPage = () => {
setTimeout(getDocx, 5000);
setTimeout(cleanUpDocx, 10000);
} else {
// handle error
setShowErrorModal(true);
}
setIsBusy(false);
}
@@ -694,6 +695,16 @@ const DocEditPage = () => {
}
/>
) : null}
{showErrorModal ? (
<ConfirmModal
onCancel={() => setShowErrorModal(false)}
onConfirm={() => setShowErrorModal(false)}
buttonLabelText="Confirm"
modalText={
"There was a problem. Support was notified and will respond within 24 hours."
}
/>
) : null}
</>
);
};