Return something from loader in hammer route

This commit is contained in:
2023-10-19 16:50:29 -04:00
parent 700d5d6bca
commit 72fba48050

View File

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