Skip to content

Commit de2ed0e

Browse files
committed
fix data
1 parent 03d5f2d commit de2ed0e

5 files changed

Lines changed: 20 additions & 10 deletions

File tree

-1.63 KB
Binary file not shown.
Lines changed: 11 additions & 0 deletions
Loading

devconnect-app/src/app/map/venue-map/VenueMap2.tsx

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -32,13 +32,12 @@ const MapPane = (props: {
3232

3333
const element = selection ? elementLookup[selection] : null;
3434

35-
// Hardcoded data for now
35+
// Data from supporters.ts for AAVE
3636
const elementData = {
37-
title: element?.id || selection || 'no-selection',
38-
description:
39-
'Explore the AI-powered IDE that lets you write code using instructions.',
37+
title: 'AAVE',
38+
description: 'Decentralized lending protocol',
4039
hasQuest: true,
41-
image: '/images/icons/star.png', // Placeholder image
40+
image: 'https://storage.googleapis.com/zapper-fi-assets/apps%2Faave-v3.png',
4241
};
4342

4443
return (
@@ -137,7 +136,7 @@ const MapPane = (props: {
137136
</div>
138137
<div className="px-1 py-0.5 border border-[#4b4b66] rounded">
139138
<div className="text-[10px] font-semibold text-[#36364c] tracking-[0.2px]">
140-
AI
139+
DeFi
141140
</div>
142141
</div>
143142
</div>

devconnect-app/src/app/quests/AppShowcaseDetail.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -468,7 +468,7 @@ export default function AppShowcaseDetail({
468468
</div>
469469
</div>
470470
</div>
471-
;{/* District Sections */}
471+
{/* District Sections */}
472472
<div className="w-full space-y-3 p-4">
473473
{filteredDistricts.map((district) => {
474474
const quests = questsByDistrict[district.id] || [];
@@ -730,7 +730,7 @@ export default function AppShowcaseDetail({
730730
);
731731
})}
732732
</div>
733-
;{/* Reset Button */}
733+
{/* Reset Button */}
734734
<div className="w-full px-4 pb-4">
735735
<button
736736
onClick={handleReset}

devconnect-app/src/data/supporters.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -578,8 +578,8 @@ export const supportersData: Record<string, Supporter> = {
578578
"locationId": "2"
579579
},
580580
"254638cdc41580fc975fe3023c8f17f0": {
581-
"name": "AAVE Dao (Avara)",
582-
"layerName": "defi_aave-dao-avara",
581+
"name": "AAVE",
582+
"layerName": "defi_aave",
583583
"logo": "https://storage.googleapis.com/zapper-fi-assets/apps%2Faave-v3.png",
584584
"description": "",
585585
"districtId": "8",

0 commit comments

Comments
 (0)