Skip to content

Commit

Permalink
removed consoles
Browse files Browse the repository at this point in the history
  • Loading branch information
shaunlumbcgov committed Mar 7, 2024
1 parent 4dd1c24 commit 5b4d2dc
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
2 changes: 0 additions & 2 deletions backend/src/routes/institute-router.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,6 @@ async function createCache(req, res) {
headers: { Authorization: `Bearer ${req.accessToken}` },
}
);
console.log("SET")
listCache.set("fundingGroups", fundingGroupsResponse.data);
res.json(fundingGroupsResponse.data);
} catch (error) {
Expand Down Expand Up @@ -320,7 +319,6 @@ async function getContactTypeCodes(req, res) {
res.status(statusCode).send(error.message);
}
} else {
console.log("set CODELIST")
const cachedCodeList = await listCache.get("codesList");
res.json(cachedCodeList);
}
Expand Down
1 change: 0 additions & 1 deletion backend/src/routes/school-router.js
Original file line number Diff line number Diff line change
Expand Up @@ -360,7 +360,6 @@ async function getAllSchools(req, res) {
null,
["label", "description"]
);
console.log(openSchoolList)
openSchoolList.forEach((currentElement, index, array) => {
const rearrangedElement = rearrangeAndRelabelObjectProperties(
currentElement,
Expand Down

0 comments on commit 5b4d2dc

Please sign in to comment.