diff --git a/backend/app/api/handlers/v1/v1_ctrl_locations.go b/backend/app/api/handlers/v1/v1_ctrl_locations.go index 3239573..d1c7cc3 100644 --- a/backend/app/api/handlers/v1/v1_ctrl_locations.go +++ b/backend/app/api/handlers/v1/v1_ctrl_locations.go @@ -100,7 +100,7 @@ func (ctrl *V1Controller) GetLocationWithPrice(auth context.Context, GID uuid.UU totalPriceFloat.Quo(totalPriceFloat, big.NewFloat(100)) location.TotalPrice, _ = totalPriceFloat.Float64() - // Add price from child locatinos + // Add price from child locations for _, childLocation := range location.Children { var childLocation, err = ctrl.GetLocationWithPrice(auth, GID, childLocation.ID) if err != nil {