fix: summary language generation

This commit is contained in:
aakashb95
2026-02-03 17:01:32 +05:30
parent 45a1a01a96
commit f0e9ffacd3
2 changed files with 4 additions and 3 deletions
+1 -1
View File
@@ -71,7 +71,7 @@ class Captain::SummaryService < Captain::BaseTaskService
def account_context_fields
[
("Account industry: #{account.custom_attributes['industry']}" if account.custom_attributes&.dig('industry').present?),
("Account language: #{account.locale}" if account.locale.present?)
("Summary language: #{account.locale}" if account.locale.present?)
]
end