The same page invokes a form like so:-
```
@if (categoryPage.FormPicker.HasValue) {
@await Component.InvokeAsync("RenderForm", new { formId = @categoryPage.FormPicker.Value, theme = "MyTheme", includeScripts = false })
}
'''
Is there any way I can get the "location" value into a hidden field in the form? The docs & googling aren't telling me but I don't think it's an unreasonable thing to want to do.
Thanks.
I thought a magic string only took data from the published page or the form itself, but it'll take a value from the HttpRequest, so that sorted it. Thanks 🙂