From 57412148deefc6492c4652cdf0088358753a9bd2 Mon Sep 17 00:00:00 2001 From: Derrick Hammer Date: Mon, 18 Dec 2023 02:02:06 -0500 Subject: [PATCH] fix: return http 200 --- app/routes/api.events.siteUpdateReceived.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/routes/api.events.siteUpdateReceived.ts b/app/routes/api.events.siteUpdateReceived.ts index 413ffd7..81d0d85 100644 --- a/app/routes/api.events.siteUpdateReceived.ts +++ b/app/routes/api.events.siteUpdateReceived.ts @@ -92,4 +92,6 @@ export async function action({ request }: ActionFunctionArgs) { } } } + + return new Response("", { status: 200 }); }