Return something from loader in hammer route

This commit is contained in:
regalijan 2023-10-19 16:50:29 -04:00
parent 700d5d6bca
commit 72fba48050
Signed by: regalijan
GPG Key ID: 5D4196DA269EF520

View File

@ -26,6 +26,8 @@ export async function loader({ context }: { context: RequestContext }) {
throw new Response(null, {
status: 403,
});
return null;
}
export function meta() {