Skip to content

Commit f0b6d7d

Browse files
committed
Removed console.log calls.
1 parent 97652f7 commit f0b6d7d

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

web-ui-external-feedback/src/pages/FeedbackSubmitPage.jsx

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -65,15 +65,12 @@ const FeedbackSubmitPage = () => {
6565
}
6666

6767
async function getFeedbackRequest(query, cookie) {
68-
console.log("FeedbackSubmitExternalRecipientPage, getFeedbackRequest, requestId: ", requestId);
6968
if (!cookie || feedbackRequestFetched.current) {
7069
return null;
7170
}
72-
console.log("FeedbackSubmitExternalRecipientPage, getFeedbackRequest, past if");
7371

7472
// make call to the API
7573
let res = await getFeedbackRequestByIdForExternalRecipient(requestId, cookie);
76-
console.log("FeedbackSubmitExternalRecipientPage, getFeedbackRequest, res: ", res);
7774
return res.payload &&
7875
res.payload.data &&
7976
res.payload.status === 200 &&
@@ -130,7 +127,6 @@ const FeedbackSubmitPage = () => {
130127
? res.payload.data
131128
: null
132129
;
133-
console.log("FeedbackSubmitPage, useEffect[feedbackRequest, selfReviewRequest, state], requesteeData: ", requesteeData);
134130
setRequestee(requesteeData)
135131
}
136132
};

0 commit comments

Comments
 (0)