Skip to content

Commit

Permalink
fix syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
cycomachead committed Jul 22, 2024
1 parent 5845793 commit 78a9b44
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/models/teacher.rb
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@ def email_attributes
teacher_school_city: self.school.city,
teacher_school_state: self.school.state,
teacher_school_website: self.school.website,
}.trasform_values { |value| value.blank? ? '(blank)' value }
}.trasform_values { |value| value.blank? ? '(blank)' : value }
end

# TODO: The school data needs to be cleaned up.
Expand Down

0 comments on commit 78a9b44

Please sign in to comment.