Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "plotlink",
"version": "1.6.0",
"version": "1.6.1",
"private": true,
"workspaces": [
"packages/*"
Expand Down
7 changes: 0 additions & 7 deletions src/components/airdrop/CampaignHero.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -306,13 +306,6 @@ export function CampaignHero() {
{/* ── MCap progress chart ── */}
<MCapChart currentFdv={data.currentFdv} />

{/* ── Participant count ── */}
<div className="text-center text-muted text-xs">
{data.totalParticipants > 0
? `${data.totalParticipants} participants earning`
: "Be the first to participate"}
</div>

{/* ── MCap explanation footnote ── */}
<div className="text-center text-muted text-[10px]">
MCap = PLOT price × 1M max supply
Expand Down
5 changes: 4 additions & 1 deletion src/components/airdrop/Leaderboard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,10 @@ export function Leaderboard() {

return (
<div className="border-border rounded border p-4">
<h3 className="text-foreground text-sm font-bold mb-3">Leaderboard</h3>
<h3 className="text-foreground text-sm font-bold">Leaderboard</h3>
<div className="text-muted text-xs mb-3">
{data.entries.length} {data.entries.length === 1 ? "participant" : "participants"}
</div>

<div className="overflow-x-auto">
<table className="w-full text-xs">
Expand Down
Loading