diff --git a/enterprise/app/models/concerns/captain_tools_helpers.rb b/enterprise/app/models/concerns/captain_tools_helpers.rb index e7bef04ca..7aa924d3d 100644 --- a/enterprise/app/models/concerns/captain_tools_helpers.rb +++ b/enterprise/app/models/concerns/captain_tools_helpers.rb @@ -73,4 +73,4 @@ module CaptainToolsHelpers tool_matches = text.scan(TOOL_REFERENCE_REGEX) tool_matches.flatten.uniq end -end \ No newline at end of file +end diff --git a/enterprise/app/views/api/v1/accounts/captain/assistants/tools.json.jbuilder b/enterprise/app/views/api/v1/accounts/captain/assistants/tools.json.jbuilder index 3af1b179c..3a993caeb 100644 --- a/enterprise/app/views/api/v1/accounts/captain/assistants/tools.json.jbuilder +++ b/enterprise/app/views/api/v1/accounts/captain/assistants/tools.json.jbuilder @@ -3,4 +3,4 @@ json.array! @tools do |tool| json.title tool[:title] json.description tool[:description] json.icon tool[:icon] -end \ No newline at end of file +end diff --git a/spec/enterprise/models/concerns/captain_tools_helpers_spec.rb b/spec/enterprise/models/concerns/captain_tools_helpers_spec.rb index 9b31a6111..1c441bc61 100644 --- a/spec/enterprise/models/concerns/captain_tools_helpers_spec.rb +++ b/spec/enterprise/models/concerns/captain_tools_helpers_spec.rb @@ -173,4 +173,4 @@ RSpec.describe CaptainToolsHelpers, type: :concern do expect(result).to eq(%w[add_contact_note update_priority add_private_note]) end end -end \ No newline at end of file +end