Skip to content

Commit 4e79a95

Browse files
committed
Update page.tsx
1 parent f993179 commit 4e79a95

File tree

1 file changed

+1
-1
lines changed
  • apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/assets/create-nft

1 file changed

+1
-1
lines changed

apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/assets/create-nft/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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);

0 commit comments

Comments
 (0)