Skip to content

Commit

Permalink
wip: update claim page
Browse files Browse the repository at this point in the history
  • Loading branch information
mwmerz committed Dec 11, 2023
1 parent 3341091 commit e645cfc
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions frontend/src/pages/modal/ClaimModalPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import ConfettiExplosion from "react-confetti-explosion"
import { ReactComponent as Logo } from "assets/AllianceDAOLogo.svg"
import { ReactComponent as CheckIcon } from "assets/check.svg"
import { AnimatedBackground } from "components/background/AnimatedBackground"
import styles from "./ConnectModalPage.module.scss"
import styles from "./ModalPage.module.scss"
import { useAllianceContracts, useNFTFromMinter } from "hooks/"
import { useAppContext } from "contexts"

Expand Down Expand Up @@ -105,7 +105,6 @@ export const ClaimModalPage = () => {
<div className={styles.logo__wrapper}>
<Logo className={styles.logo} />
</div>
{/** Wallet Not connected? render connect */}
{!walletAddress ? (
<div>
<div className={styles.text}>
Expand All @@ -127,7 +126,6 @@ export const ClaimModalPage = () => {
</div>
</div>
) : claimAvailable ? (
/** Wallet Connected - Claim available */
<div>
<div className={styles.text}>
<div className={styles.text}>
Expand All @@ -148,7 +146,6 @@ export const ClaimModalPage = () => {
</div>
</div>
) : (
/** Wallet Connected - No Claim Available */
<div>
<div className={styles.text}>
<div className={styles.text}>
Expand All @@ -166,8 +163,6 @@ export const ClaimModalPage = () => {
</div>
</div>
)}

{/** Wallet Connected - Claim success? Confetti! */}
</div>
</div>
)
Expand Down

0 comments on commit e645cfc

Please sign in to comment.