Skip to content

Commit

Permalink
Remove treasury
Browse files Browse the repository at this point in the history
  • Loading branch information
zpalmtree committed Oct 10, 2024
1 parent 7f0d622 commit bdeb143
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/BurnLeaderboard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,11 @@ const textColors = {
'Keeper of the Flame': 'text-slugGreen',
};

const excludedAddresses = [
'BnZNCQz3Zqb1o4nrjW3zNGbWdKubSTw7mAU5NGYouJMF',
'GXgLxgoJ9oNRCHRQZwaY1v5dXqcpys3K2LqNuRtGM6oo',
];

export function BurnLeaderboard(props: BurnLeaderboardProps) {
const {
burnStats,
Expand All @@ -35,7 +40,7 @@ export function BurnLeaderboard(props: BurnLeaderboardProps) {
setRows([...burnStats.users].map((u) => {
(u as any).expanded = false;
return u;
}));
}).filter((u) => !excludedAddresses.includes(u.address)));
}, [burnStats]);

const handleExpand = React.useCallback((address: string) => {
Expand Down

0 comments on commit bdeb143

Please sign in to comment.