For some reason my application won't login on firefox. It throws a CSRF error, although all tags are present and submitting successfully. Login also works on any other browser.
I found an answer that referenced changing:
Learn::Application.config.session_store :cookie_store, key: '_learn_session', domain: :all
to
Learn::Application.config.session_store :cookie_store, key: '_learn_session'
in config/initializers/session_store.rb
I've tried with both (and initially had it without domain: :all) but neither seem to work.
This question references my issue, but the answer is was not helpful in my situation.
To further complicate the situation, I've tested without CSRF enabled, and the app simply prevents a login without a failure notification.
Any help would be appreciated.