From 7652c80d4b04448ef4901271b486ce0eb17daece Mon Sep 17 00:00:00 2001 From: Samual Norman Date: Tue, 29 Aug 2023 20:49:54 +0100 Subject: [PATCH] Fix broken link (#1035) --- docs/api/createRouteAction.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/api/createRouteAction.md b/docs/api/createRouteAction.md index fd708f831..8e14744a1 100644 --- a/docs/api/createRouteAction.md +++ b/docs/api/createRouteAction.md @@ -239,7 +239,7 @@ export function EnrollmentPage() { ### Creating a Enhanced Form -Although we recommend using [progressively enhanced forms on the server](./createServerAction.md#creating-a-progressively-enhanced-form) whenever possible, we can still take advantage of running actions on the client and used enhanced forms. This is ideal when you need to run an action or API request that can only be done in the browser. +Although we recommend using [progressively enhanced forms on the server](./createServerAction#creating-a-progressively-enhanced-form) whenever possible, we can still take advantage of running actions on the client and used enhanced forms. This is ideal when you need to run an action or API request that can only be done in the browser. To accomplish this we need to pass information to our action using form elements like ``. Any data need to be sent that end users don't enter can be added with an `` with `type="hidden"`.