From 4edf67bd7e6103e18eacc9d683434078e8881f6d Mon Sep 17 00:00:00 2001 From: "svelte-docs-bot[bot]" <196124396+svelte-docs-bot[bot]@users.noreply.github.com> Date: Tue, 10 Jun 2025 21:41:08 +0000 Subject: [PATCH] sync kit docs --- .../content/docs/kit/20-core-concepts/30-form-actions.md | 4 ++-- apps/svelte.dev/content/docs/kit/40-best-practices/03-auth.md | 2 +- .../content/docs/kit/98-reference/50-configuration.md | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/apps/svelte.dev/content/docs/kit/20-core-concepts/30-form-actions.md b/apps/svelte.dev/content/docs/kit/20-core-concepts/30-form-actions.md index c0ae9dbf84..989b63169e 100644 --- a/apps/svelte.dev/content/docs/kit/20-core-concepts/30-form-actions.md +++ b/apps/svelte.dev/content/docs/kit/20-core-concepts/30-form-actions.md @@ -369,7 +369,7 @@ Without an argument, `use:enhance` will emulate the browser-native behaviour, ju ### Customising use:enhance -To customise the behaviour, you can provide a `SubmitFunction` that runs immediately before the form is submitted, and (optionally) returns a callback that runs with the `ActionResult`. Note that if you return a callback, the default behavior mentioned above is not triggered. To get it back, call `update`. +To customise the behaviour, you can provide a `SubmitFunction` that runs immediately before the form is submitted, and (optionally) returns a callback that runs with the `ActionResult`. ```svelte