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:
parent
e8d8a780da
commit
0a547a3cb8
1 changed files with 1 additions and 1 deletions
|
@ -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();
|
||||
|
|
Loading…
Add table
Reference in a new issue