Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
Allyson-English committed Jan 30, 2025
1 parent 38201bd commit 2942f71
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions internal/services/cio/cio.go
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ func New(cioKey string, acctClient AccountsClient, logger *zerolog.Logger) (*Ser

}

func (s *Service) SoftwareDisconnectionEvent(ctx context.Context, vehicleID uint64, address []byte, integrationId string) error {
func (s *Service) SoftwareDisconnectionEvent(ctx context.Context, vehicleID uint64, address []byte, integrationID string) error {
account, err := s.acctClient.GetAccount(ctx, &pb_accounts.GetAccountRequest{
WalletAddress: address,
})
Expand All @@ -45,7 +45,7 @@ func (s *Service) SoftwareDisconnectionEvent(ctx context.Context, vehicleID uint
return s.client.Enqueue(
analytics.Identify{
UserId: account.Id,
Traits: analytics.NewTraits().Set("integration_id", integrationId).Set("vehicle_id", vehicleID),
Traits: analytics.NewTraits().Set("integration_id", integrationID).Set("vehicle_id", vehicleID),
},
)
}

0 comments on commit 2942f71

Please sign in to comment.