0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2025-03-31 23:31:30 -05:00

refactor: clarify what enhance: true allows

This commit is contained in:
bholmesdev 2024-04-23 19:06:24 -04:00
parent e8d8a780da
commit 0a547a3cb8

View file

@ -14,7 +14,7 @@ export const POST: APIRoute = async (context) => {
throw new ActionError({
status: 'INTERNAL_SERVER_ERROR',
message:
'Called an action with a non-JSON body. To enhance an action to accept form data, add `enhance: true` to your `defineAction()` config.',
'Called an action with a non-JSON body. To automatically convert form data requests to JSON, add `enhance: true` to your `defineAction()` config.',
});
}
const args = await request.clone().json();