I'm having an issue with the Solidus Paypal Extens...
# support
j
I'm having an issue with the Solidus Paypal Extension hijacking the store pricing options which are set inside Spree::Config on app boot:
Copy code
initializer "solidus_paypal_commerce_platform.set_pricing_options_class" do
      def (Spree::Config).pricing_options_class
        binding.pry
        SolidusPaypalCommercePlatform::PricingOptions
      end
    end
^ this method in the engine.rb file appears to run per request and take precedence to the store level pricing options rendering them unusable -- is there a way to avoid this by chance?