mirror of
https://github.com/pacnpal/thrilltrack-explorer.git
synced 2025-12-23 18:11:12 -05:00
feat: Implement full Phase 3 API optimizations
This commit is contained in:
@@ -145,7 +145,7 @@ export function FeaturedParks() {
|
||||
</div>
|
||||
|
||||
<div className="grid md:grid-cols-3 gap-6">
|
||||
{topRatedParks.map((park) => (
|
||||
{topRated.data?.map((park) => (
|
||||
<FeaturedParkCard
|
||||
key={park.id}
|
||||
park={park}
|
||||
@@ -166,7 +166,7 @@ export function FeaturedParks() {
|
||||
</div>
|
||||
|
||||
<div className="grid md:grid-cols-3 gap-6">
|
||||
{mostRidesParks.map((park) => (
|
||||
{mostRides.data?.map((park) => (
|
||||
<FeaturedParkCard
|
||||
key={park.id}
|
||||
park={park}
|
||||
|
||||
Reference in New Issue
Block a user