Remove freeze method call at csv_header

This commit is contained in:
Thiago Youssef 2022-03-14 12:43:53 +02:00
parent 1fac9d9618
commit dd513b6313
6 changed files with 6 additions and 6 deletions

View file

@ -590,6 +590,6 @@ class Contact < ApplicationRecord
end
def self.csv_header
['Name', 'ID', 'Ident', 'E-mail', 'Created at', 'Registrar', 'Phone'].freeze
['Name', 'ID', 'Ident', 'E-mail', 'Created at', 'Registrar', 'Phone']
end
end