You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This problem in _custom_error_message.rb:45:in full_messages too I18n.t(:"errors.format", options.merge(:message => m))
must be changed to I18n.t(:"errors.format", **options.merge(message: m)
It is deprecated but works
For ruby 3.0 support:
https://www.ruby-lang.org/en/news/2019/12/12/separation-of-positional-and-keyword-arguments-in-ruby-3-0/
Params to I18n should be passed this way:
The text was updated successfully, but these errors were encountered: