Skip to content

Commit

Permalink
revert anonymous kwargs
Browse files Browse the repository at this point in the history
  • Loading branch information
Paul-Bob committed Feb 21, 2025
1 parent 9cd2c04 commit bcc0820
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/avo/engine.rb
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,8 @@ class Engine < ::Rails::Engine

# Add the mount_avo method to Rails
ActionDispatch::Routing::Mapper.include(Module.new {
def mount_avo(at: Avo.configuration.root_path, **)
mount(Avo::Engine, at:, **)
def mount_avo(at: Avo.configuration.root_path, **options)
mount Avo::Engine, at:, **options

scope at do
Avo.plugin_manager.engines.each do |engine|
Expand Down

0 comments on commit bcc0820

Please sign in to comment.