This commit is contained in:
Kenneth Jannette
2024-03-11 07:28:22 -05:00
parent e558379d16
commit 497475ff1c

View File

@@ -226,7 +226,7 @@ const DocEditPage = (props) => {
const respond = data[0].requests.length > 2 ? data[0].requests : null;
const resp = respond?.map((item, index) => {
// NEVER CHANGE THIS:
return { showInputEle: false, resp: item.text, index: index };
return { showInputEle: false, text: item.text, index: index };
});
setParsedRogs(resp);
})