Skip to content

Commit

Permalink
Rubocop, shut up
Browse files Browse the repository at this point in the history
  • Loading branch information
nimmolo committed Jan 20, 2024
1 parent 8b1ee91 commit 34e6450
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -404,7 +404,7 @@ DEPENDENCIES
xmlrpc

RUBY VERSION
ruby 3.2.2p53
ruby 3.3.0p0

BUNDLED WITH
2.3.26
4 changes: 2 additions & 2 deletions app/helpers/matrix_box_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -39,13 +39,13 @@ def matrix_box(**args, &block)
end
end

def matrix_box_image(image = nil, **)
def matrix_box_image(image = nil, **args)
return unless image

user = User.current ? "logged_in" : "no_user"
tag.div(class: "thumbnail-container") do
cache([image, user]) do
concat(interactive_image(image, **))
concat(interactive_image(image, **args))
end
end
end
Expand Down

0 comments on commit 34e6450

Please sign in to comment.