File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
app/[locale]/10years/_components/NFTMintCard Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ import { Button } from "@/components/ui/buttons/Button"
10
10
import MintError from "./views/MintError"
11
11
import MintSuccess from "./views/MintSuccess"
12
12
import Connected from "./Connected"
13
+ import GasPriceDisplay from "./GasPriceDisplay"
13
14
14
15
import { useNetworkContract } from "@/hooks/useNetworkContract"
15
16
import { getErrorMessage } from "@/lib/torch"
@@ -79,6 +80,8 @@ export default function Mint({ address }: { address: Address }) {
79
80
80
81
return (
81
82
< div className = "flex flex-col items-center justify-center space-y-6" >
83
+ < GasPriceDisplay className = "w-full" />
84
+
82
85
{ isSupportedNetwork && (
83
86
< >
84
87
< Button
Original file line number Diff line number Diff line change @@ -11,7 +11,6 @@ import CountDown from "../CountDown"
11
11
12
12
import Connection from "./Connection"
13
13
import GasFeeInformation from "./GasFeeInformation"
14
- import GasPriceDisplay from "./GasPriceDisplay"
15
14
16
15
import Curved10YearsText from "@/public/images/10-year-anniversary/10y-curved-heading.svg"
17
16
@@ -119,8 +118,6 @@ const NFTMintCard = ({ className }: NFTMintCardProps) => {
119
118
120
119
< GasFeeInformation />
121
120
122
- < GasPriceDisplay />
123
-
124
121
< Connection />
125
122
</ >
126
123
) }
You can’t perform that action at this time.
0 commit comments