Skip to content

Commit

Permalink
Fix: Fixed colliding react keys in ecosystem search (#619)
Browse files Browse the repository at this point in the history
* Fixed colliding react keys in ecosystem search. Deleted redundant card.

* Updated url for lorescan
  • Loading branch information
brendan-defi authored Jul 9, 2024
1 parent 897147c commit 3352b90
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 11 deletions.
2 changes: 1 addition & 1 deletion apps/web/src/components/Ecosystem/List.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ export function List() {
</div>
<div className="flex flex-col gap-10 lg:grid lg:grid-cols-4">
{truncatedApps.map((app) => (
<Card {...app} key={app.name} />
<Card {...app} key={app.url} />
))}
</div>
{showEmptyState && (
Expand Down
11 changes: 1 addition & 10 deletions apps/web/src/data/ecosystem.json
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@
"infra"
],
"description": "Upgrade Your Web3 Experience with Lore as your primary explorer for Ethereum, Avalanche (C-Chain), Fantom Opera, Base. Stay ahead of the curve with LoreAI, notifications, and more.",
"url": "https://searchcrypto.com/",
"url": "https://lorescan.com/",
"imageUrl": "/images/partners/lore.png"
},
{
Expand Down Expand Up @@ -1944,15 +1944,6 @@
],
"imageUrl": "/images/partners/omni_network.webp"
},
{
"name": "OpenCover",
"url": "https://opencover.com",
"description": "OpenCover makes it easy and affordable to cover your portfolio against onchain risks such as smart contract exploits and oracle failures.",
"tags": [
"infra"
],
"imageUrl": "/images/partners/opencover.webp"
},
{
"name": "Pyth Network",
"url": "https://pyth.network/",
Expand Down

0 comments on commit 3352b90

Please sign in to comment.