File tree Expand file tree Collapse file tree 1 file changed +1
-1
lines changed
apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/assets/create-nft Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Original file line number Diff line number Diff line change @@ -128,6 +128,7 @@ export default function CreateNFTPage() {
128128 const activeChain = useActiveWalletChain ( ) ;
129129 const switchChain = useSwitchActiveWalletChain ( ) ;
130130 const thirdwebClient = useThirdwebClient ( ) ;
131+ const connectedAddress = activeAccount ?. address ;
131132
132133 // Forms
133134 const collectionInfoForm = useForm < CollectionInfoValues > ( {
@@ -905,7 +906,6 @@ export default function CreateNFTPage() {
905906 fee_recipient : mintSettings . royaltyAddress || activeAccount . address ,
906907 seller_fee_basis_points :
907908 Number . parseInt ( mintSettings . royaltyPercentage || "0" ) * 100 ,
908- ...( imageUri ? { image : imageUri } : { } ) ,
909909 } ;
910910
911911 console . log ( "Deploying with parameters:" , initializeParams ) ;
You can’t perform that action at this time.
0 commit comments