diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/tasks/assets.rake | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/lib/tasks/assets.rake b/lib/tasks/assets.rake index 0826f0186..b642510a1 100644 --- a/lib/tasks/assets.rake +++ b/lib/tasks/assets.rake @@ -1,10 +1,8 @@ # frozen_string_literal: true def render_static_page(action, dest:, **opts) - I18n.with_locale(ENV['DEFAULT_LOCALE'] || I18n.default_locale) do - html = ApplicationController.render(action, opts) - File.write(dest, html) - end + html = ApplicationController.render(action, opts) + File.write(dest, html) end namespace :assets do |