Skip to content

Commit

Permalink
fix linter issues
Browse files Browse the repository at this point in the history
  • Loading branch information
FoseFx committed Dec 3, 2024
1 parent 32e11f1 commit 61fbbe3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions services/tasks-svc/internal/ward/ward.go
Original file line number Diff line number Diff line change
Expand Up @@ -334,9 +334,9 @@ func (s *ServiceServer) DeleteWard(ctx context.Context, req *pb.DeleteWardReques
tracking.RemoveWardFromRecentActivity(ctx, wardID.String())

// store event
if err := eventstoredb.SaveEntityEventForAggregate(ctx, s.es, NewWardAggregate(id),
if err := eventstoredb.SaveEntityEventForAggregate(ctx, s.es, NewWardAggregate(wardID),
&pbEventsV1.WardDeletedEvent{
Id: id.String(),
Id: wardID.String(),
},
); err != nil {
return nil, err
Expand Down
1 change: 0 additions & 1 deletion services/user-svc/internal/organization/organization.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ import (
"encoding/hex"
"fmt"
pb "gen/services/user_svc/v1"
"hwauthz/commonPerm"
"hwdb"
"hwlocale"
"hwutil"
Expand Down

0 comments on commit 61fbbe3

Please sign in to comment.