Skip to content

Commit

Permalink
better pic for round closing modal
Browse files Browse the repository at this point in the history
  • Loading branch information
MattPereira committed Dec 1, 2023
1 parent 1a9be96 commit 1fa335e
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions packages/nextjs/components/vaults-of-fortune/Vaults.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ export const Vaults = () => {
{vaultDeposit[vault.key].showInterface ? (
<>
<div className="text-xl text-center bg-base-200 py-3 rounded-xl">
{Number(vault.depositAmount).toFixed(1)}
{formatWithCommas(Number(vault.depositAmount).toFixed(1))}
</div>
<div className="flex items-center gap-4 my-5">
<div className="text-xl text-center">{vaultDeposit[vault.key].percentage}%</div>
Expand Down Expand Up @@ -256,7 +256,7 @@ export const Vaults = () => {
) : (
<>
<div className="text-xl text-center bg-base-200 py-3 rounded-xl">
{Number(vault.withdrawAmount).toFixed(1)}
{formatWithCommas(Number(vault.withdrawAmount).toFixed(1))}
</div>

<div className="flex items-center gap-4 my-5">
Expand Down
2 changes: 1 addition & 1 deletion packages/nextjs/pages/contest.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ const CurrentContest: NextPage = () => {
<h3 className="font-cubano text-4xl text-center mb-10">Round Closing Soon</h3>
<div className="flex justify-center mb-5">
<Image
src="/closing.png"
src="/round-closing.png"
width="700"
height="700"
alt="vaults of fortune banner"
Expand Down
Binary file removed packages/nextjs/public/closing.png
Binary file not shown.
Binary file added packages/nextjs/public/round-closing.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 1fa335e

Please sign in to comment.