# frozen_string_literal: true module Yattho # :nocov: # :nodoc: module FormHelper def yattho_form_with(**kwargs, &block) form_with(**kwargs, skip_default_ids: false, builder: Yattho::Forms::Builder, &block) end def yattho_fields_for(record_name, record_object = nil, options = {}, &block) fields_for( record_name, record_object, options.merge( skip_default_ids: false, builder: Yattho::Forms::Builder ), &block ) end end end