Skip to content

Commit

Permalink
Adjustments for ruby 3
Browse files Browse the repository at this point in the history
  • Loading branch information
TheWalkingLeek committed Oct 13, 2023
1 parent 0a4cf92 commit 2552cba
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions app/domain/export/tabular/messages/letters_with_invoice.rb
Original file line number Diff line number Diff line change
Expand Up @@ -54,10 +54,10 @@ def housemate_attr(attr, housemate_index)
end

def housemate_label(attr, housemate_index)
I18n.t('export.tabular.messages.letters_with_invoice.housemate_n_attr', {
index: housemate_index,
attr: person_attribute(attr, { default: attribute_label(attr)})
})
I18n.t('export.tabular.messages.letters_with_invoice.housemate_n_attr',
index: housemate_index,
attr: person_attribute(attr, { default: attribute_label(attr)})
)
end

private
Expand Down

0 comments on commit 2552cba

Please sign in to comment.