Skip to content

Commit

Permalink
Consoles to debug delete refresh issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Aman-Hundal committed Nov 30, 2023
1 parent 83ccc28 commit 2736d2e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 0 deletions.
2 changes: 2 additions & 0 deletions forms-flow-web/src/components/FOI/FOIRequest/FOIRequest.js
Original file line number Diff line number Diff line change
Expand Up @@ -919,6 +919,8 @@ const FOIRequest = React.memo(({ userDetail }) => {
requestState !== StateEnum.appfeeowing.name &&
requestDetails?.requestType === FOI_COMPONENT_CONSTANTS.REQUEST_TYPE_GENERAL)
}

console.log("REQ OBJ", requestDetails)

return (!isLoading &&
requestDetails &&
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ import './oipcdetails.scss';
const OIPCDetailsList = (props) => {
const {oipcData, removeOIPC, updateOIPC} = props;

console.log("COMPONENT", oipcData)

const OIPCItems = oipcData?.map((oipcObj, index) => {
return (
<>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,8 @@ const useOIPCHook = () => {
setOipcData(stagedOIPCData);
}, [isOIPCReview])

console.log("HOOK", oipcData)


//OIPC Functions
const addOIPC = () => {
Expand Down

0 comments on commit 2736d2e

Please sign in to comment.