Skip to content

Commit

Permalink
add any to reducer types
Browse files Browse the repository at this point in the history
  • Loading branch information
danielhep committed Jan 3, 2025
1 parent f5f727c commit 34da8d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/components/viewers/nearby/nearby-view.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ function NearbyView({
)
)

const scooterGroups = nearby?.reduce((acc, item) => {
const scooterGroups = nearby?.reduce((acc: any, item: any) => {
if (item.place.__typename === 'RentalVehicle') {
const network = item.place.network
if (!acc[network]) {
Expand Down

0 comments on commit 34da8d3

Please sign in to comment.