Skip to content

Commit

Permalink
removed console.logs
Browse files Browse the repository at this point in the history
  • Loading branch information
bwsarge committed Jun 1, 2024
1 parent 9184ccd commit e3cee63
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion checkers-app/src/components/common/Menu.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,6 @@ export default function MenuComponent(Props: PropType) {
if (!checkerDetails.checkerId) {
return;
}
console.log("checkerDetails.checkerId", checkerDetails.checkerId);
if (intent === "activate") {
await activateChecker(checkerDetails.checkerId);
} else if (intent === "deactivate") {
Expand Down
2 changes: 0 additions & 2 deletions functions/src/definitions/api/handlers/patchChecker.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,6 @@ const patchCheckerHandler = async (req: Request, res: Response) => {
const checkerKeys = Object.keys(checker)
const validKeys = keys.every((key) => checkerKeys.includes(key))

console.log(body)

if (!validKeys) {
return res.status(400).send("Invalid keys in request body")
}
Expand Down

0 comments on commit e3cee63

Please sign in to comment.