diff --git a/app/routes/users+/index.tsx b/app/routes/users+/index.tsx index 932abb06..5022cdd7 100644 --- a/app/routes/users+/index.tsx +++ b/app/routes/users+/index.tsx @@ -47,9 +47,7 @@ export async function loader({ request }: LoaderFunctionArgs) { if (!result.success) { return dataResponse( { status: 'error', error: result.error.message } as const, - { - status: 400, - }, + { status: 400 }, ) } return { status: 'idle', users: result.data } as const