From 72fba480508dbc0f730333a5d2e02a5dff721540 Mon Sep 17 00:00:00 2001 From: regalijan Date: Thu, 19 Oct 2023 16:50:29 -0400 Subject: [PATCH] Return something from loader in hammer route --- app/routes/hammer.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/routes/hammer.tsx b/app/routes/hammer.tsx index b267b4d..0ba87ae 100644 --- a/app/routes/hammer.tsx +++ b/app/routes/hammer.tsx @@ -26,6 +26,8 @@ export async function loader({ context }: { context: RequestContext }) { throw new Response(null, { status: 403, }); + + return null; } export function meta() {