Skip to content

Commit

Permalink
Remove brackets for unused event tag (#117)
Browse files Browse the repository at this point in the history
  • Loading branch information
ericaporter authored Mar 4, 2024
1 parent b9c55f2 commit 54e0223
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/dfe/analytics/entities.rb
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def send_event(type, data)
.with_type(type)
.with_entity_table_name(self.class.table_name)
.with_data(data)
.with_tags([event_tags])
.with_tags(event_tags)
.with_request_uuid(RequestLocals.fetch(:dfe_analytics_request_id) { nil })

DfE::Analytics::SendEvents.do([event.as_json])
Expand Down

0 comments on commit 54e0223

Please sign in to comment.