When add these two gems together on my Gemfile:
solidus_frontend (~> 2.9.0)
solidus_auth_devise
I am getting the error below when trying to start the server
Before process_action callback :setup_for_current_state has not been defined (ArgumentError)
The only way we found to fix this is by doing this change to this file
lib/controllers/frontend/spree/checkout_controller_decorator.rb
- base.skip_before_action :setup_for_current_state, only: [:registration, :update_registration]
+ base.skip_before_action :setup_for_current_state, only: [:registration, :update_registration], raise: false
Is this happening to someone else? Am I doing something wrong?