Skip to content

Commit

Permalink
fix: ui fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
rhlsthrm committed Nov 12, 2023
1 parent 76cec57 commit 75a58f5
Showing 1 changed file with 2 additions and 11 deletions.
13 changes: 2 additions & 11 deletions src/components/GameUI.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ const CurrentWinner = () => {
</StatNumber>
<StatHelpText>
{numHitsIsSuccess ? numHits?.toString() : "..."} hits taken
{numHitsIsSuccess && (numHits! < 20) ? need : ""}
{numHitsIsSuccess && numHits! < 20 ? need : ""}
</StatHelpText>
</Stat>
);
Expand Down Expand Up @@ -345,8 +345,7 @@ const TakeAHit = ({ address, isPaused }: TakeAHitProps) => {
{isSuccessBalance ? formatEther(balance!) : "..."}!{" "}
<Link href={BUY_ZOOMER_LINK} isExternal color="teal.500">
BUY SOME!
</Link>{" "}
Rektguy NFT collections work also!
</Link>
</Text>
</VStack>
)}
Expand Down Expand Up @@ -508,14 +507,6 @@ const GameDescription = () => {
<Link href={BUY_ZOOMER_LINK} isExternal color="teal.500">
buy it here!
</Link>
. Due to our bussin collab with Rektguys, you can also use{" "}
<Link
href={"https://opensea.io/collection/rektguy"}
isExternal
color="teal.500"
>
Rektguy NFTs!
</Link>
<br />
7. ONE lucky Zoomer gets a nice payout from the final pot (5% of the
total). how is it random? our gigabrain devs use{" "}
Expand Down

0 comments on commit 75a58f5

Please sign in to comment.