Skip to content

Commit

Permalink
chore: lint code
Browse files Browse the repository at this point in the history
  • Loading branch information
benjaspet committed Dec 2, 2024
1 parent f3f6695 commit c1f7d44
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/screens/explore/EventsScrollable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,8 @@ const EventsScrollable: React.FC<EventsScrollableProps> = ({

const data = await res.json();

const mappedVenues = data.map((venue: any) => ({
id: venue.venue_id,
const mappedVenues = data.map((venue: Venue) => ({
id: venue.id,
name: venue.name,
address: venue.address,
city: venue.city,
Expand Down

0 comments on commit c1f7d44

Please sign in to comment.