fix: return http 200

This commit is contained in:
Derrick Hammer 2023-12-18 02:02:06 -05:00
parent 8277c3e6df
commit 57412148de
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
1 changed files with 2 additions and 0 deletions

View File

@ -92,4 +92,6 @@ export async function action({ request }: ActionFunctionArgs) {
}
}
}
return new Response("", { status: 200 });
}