Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Don't display the lootbox icon, include the epoch during the lootbox generation #2484

Merged
merged 3 commits into from
Jan 10, 2024
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
Original file line number Diff line number Diff line change
Expand Up @@ -309,6 +309,7 @@ func main() {
RewardTier: rewardTier,
LootboxCount: lootboxCountFloat,
Application: application,
Epoch: currentEpoch,
}

queue.SendMessage(lootboxes_queue.TopicLootboxes, lootbox)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ import {
TabButton,
toDecimalPlaces,
ProviderIcon,
LootBottle,
TokenIcon,
} from "@fluidity-money/surfing";
import { useState, useContext, useEffect, useMemo } from "react";
Expand Down Expand Up @@ -377,7 +376,6 @@ export default function Home() {
logo,
utilityTokens,
application,
rewardTier,
lootboxCount,
} = data;

Expand Down Expand Up @@ -466,11 +464,7 @@ export default function Home() {
className="table-address"
href={`/${network}/dashboard/airdrop`}
>
<LootBottle
size="lg"
rarity={rewardTier}
quantity={lootboxCount}
/>
{ lootboxCount }
</a>
) : (
<Text>-</Text>
Expand Down
Loading