Skip to content

Commit

Permalink
Fix faa job phone bug (#4212)
Browse files Browse the repository at this point in the history
fix job phone number bug
  • Loading branch information
ATBull81 authored and bbodine1 committed Aug 14, 2024
1 parent 2260b21 commit 777a281
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ def build_job_incomes_hash(applicant, hash)
hash[:state] = job.employer_address.state
hash[:zip] = job.employer_address.zip
end
hash[:employer_phone] = format_phone(income.employer_phone.full_phone_number) if job.employer_phone.present?
hash[:employer_phone] = format_phone(job.employer_phone.full_phone_number) if job.employer_phone.present?
end
hash
end
Expand Down

0 comments on commit 777a281

Please sign in to comment.