Fix lint nits

This commit is contained in:
Andreas Nedbal 2024-08-11 05:02:03 +02:00 committed by Andreas Nedbal
parent 7c475b5ff3
commit 8ad12c33a8
2 changed files with 4 additions and 4 deletions

View File

@ -2,9 +2,9 @@
class AboutController < ApplicationController
def index
if Retrospring::Config.advanced_frontpage_enabled?
render template: "about/index_advanced"
end
return unless Retrospring::Config.advanced_frontpage_enabled?
render template: "about/index_advanced"
end
def about

View File

@ -28,5 +28,5 @@
= f.check_box :remember_me
= f.primary t("voc.login"), class: "btn btn-primary d-grid w-100"
= render "shared/links"