From 768adb3852b47a384ac4e260316a240456fa4a31 Mon Sep 17 00:00:00 2001 From: AJ Schmidt Date: Mon, 9 Jan 2023 19:58:05 -0500 Subject: [PATCH] style: prettier (#116) --- lambda-function.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/lambda-function.js b/lambda-function.js index 483b7b7..7b61b07 100644 --- a/lambda-function.js +++ b/lambda-function.js @@ -4,7 +4,6 @@ const lowercaseKeys = require("lowercase-keys"); const { template } = require("./views/probot"); async function lambdaFunction(probot, event, context) { - if (event.httpMethod === "GET" && event.path === "/probot") { const res = { statusCode: 200, @@ -34,5 +33,4 @@ async function lambdaFunction(probot, event, context) { statusCode: 200, body: JSON.stringify({ ok: true }), }; - }