Skip to content

Commit

Permalink
CORE-2016: fixed a lint warning
Browse files Browse the repository at this point in the history
  • Loading branch information
slr71 committed Oct 29, 2024
1 parent 4db2914 commit 2ea589f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/controllers/plans.go
Original file line number Diff line number Diff line change
Expand Up @@ -419,7 +419,7 @@ func (s Server) AddPlanRates(ctx echo.Context) error {
planRates := planRateList.ToDBModel()

// Plug the plan ID into each of the plan rates.
for i, _ := range planRates {
for i := range planRates {
planRates[i].PlanID = &planID
}

Expand Down

0 comments on commit 2ea589f

Please sign in to comment.