@@ -21,7 +21,6 @@ import { useEstimateGas } from "../../hooks/attestations/useEstimateGas";
21
21
import { AttestationChainId } from "../attestations/utils/constants" ;
22
22
import { useAttestationFee } from "../contributors/hooks/useMintingAttestations" ;
23
23
import { useAttestationStore } from "../../attestationStore" ;
24
- import { useDebugMode } from "../api/utils" ;
25
24
import { RainbowBorderButton } from "../contributors/components/Buttons/RainbowBorderButton" ;
26
25
import Modal from "../common/components/Modal" ;
27
26
@@ -170,7 +169,6 @@ export default function ThankYou() {
170
169
? false
171
170
: balance . value < attestationFee + ( gasEstimation ?? 0n ) ;
172
171
173
- const debugModeEnabled = useDebugMode ( ) ;
174
172
175
173
return (
176
174
< >
@@ -193,38 +191,36 @@ export default function ThankYou() {
193
191
</ div >
194
192
195
193
{ /* Right Section */ }
196
- { debugModeEnabled && (
197
- < div className = "w-full lg:w-1/2 " >
198
- < div className = "flex flex-col items-center justify-center" >
199
- { /* Main content */ }
200
- < div className = "w-full max-w-[800px] min-h-svh overflow-hidden bg-gradient-to-b from-[#EBEBEB] to-transparent rounded-t-[400px] flex flex-col items-center justify-center pt-20 px-4 mx-auto" >
201
- < div className = "flex flex-col items-center" >
202
- < div className = "relative max-w-[500px] z-10 text-center" >
203
- < h1 className = "text-5xl mb-2 font-modern-era-bold" >
204
- Mint your Impact
205
- </ h1 >
206
- < p className = "mt-1 text-lg font-modern-era-regular" >
207
- Capture your contribution onchain with an
208
- attestation and receive a unique visual that
209
- symbolizes your donation.
210
- </ p >
211
- < p className = "my-2 text-lg font-modern-era-regular" >
212
- This visual reflects your onchain attestation,
213
- marking your support in a meaningful way.
214
- </ p >
215
- </ div >
216
- < PreviewFrame
217
- handleSelectBackground = { handleSelectBackground }
218
- mint = { toggleModal }
219
- />
194
+ < div className = "w-full lg:w-1/2 " >
195
+ < div className = "flex flex-col items-center justify-center" >
196
+ { /* Main content */ }
197
+ < div className = "w-full max-w-[800px] min-h-svh overflow-hidden bg-gradient-to-b from-[#EBEBEB] to-transparent rounded-t-[400px] flex flex-col items-center justify-center pt-20 px-4 mx-auto" >
198
+ < div className = "flex flex-col items-center" >
199
+ < div className = "relative max-w-[500px] z-10 text-center" >
200
+ < h1 className = "text-5xl mb-2 font-modern-era-bold" >
201
+ Mint your Impact
202
+ </ h1 >
203
+ < p className = "mt-1 text-lg font-modern-era-regular" >
204
+ Capture your contribution onchain with an
205
+ attestation and receive a unique visual that
206
+ symbolizes your donation.
207
+ </ p >
208
+ < p className = "my-2 text-lg font-modern-era-regular" >
209
+ This visual reflects your onchain attestation,
210
+ marking your support in a meaningful way.
211
+ </ p >
220
212
</ div >
213
+ < PreviewFrame
214
+ handleSelectBackground = { handleSelectBackground }
215
+ mint = { toggleModal }
216
+ />
221
217
</ div >
222
218
</ div >
223
- < div className = "fixed -bottom-6 right-11 w-full z-20" >
224
- < Footer />
225
- </ div >
226
219
</ div >
227
- ) }
220
+ < div className = "fixed -bottom-6 right-11 w-full z-20" >
221
+ < Footer />
222
+ </ div >
223
+ </ div >
228
224
</ div >
229
225
) : minted ? (
230
226
< div className = "rounded-xl absolute top-20 flex flex-col items-center text-center gap-6 px-[64px] py-8 backdrop-blur-xl" >
0 commit comments