1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
---
layout: default
title: Known issues
nav_order: 11
---
# Known issues
_There remain several known issues with ViewComponent. We'd be thrilled to see you consider solutions to these thorny bugs!_
## Forms don't use the default `FormBuilder`
Calls to form helpers such as `form_with` in ViewComponents [don't use the default form builder](https://github.com/viewcomponent/view_component/pull/1090#issue-753331927). This is by design, as it allows global state to change the rendered output of a component. Instead, consider passing a form builder into form helpers via the `builder` argument:
```html.erb
<%= form_for(record, builder: CustomFormBuilder) do |f| %>
<%= f.text_field :name %>
<% end %>
```
|