You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/(sidebar)/assets/create/_common/download-file-button.tsx
+3-1Lines changed: 3 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -10,9 +10,11 @@ export function handleDownload(params: {
Copy file name to clipboardExpand all lines: apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/(sidebar)/assets/create/nft/create-nft-page.tsx
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -148,20 +148,22 @@ export function CreateNFTPage(props: {
148
148
trackEvent(
149
149
getNFTStepTrackingData({
150
150
action: "deploy",
151
-
ercType: "erc721",
151
+
ercType,
152
152
chainId: Number(formValues.chain),
153
153
status: "success",
154
154
}),
155
155
);
156
156
157
157
trackEvent(
158
158
getNFTDeploymentTrackingData({
159
-
ercType: "erc721",
159
+
ercType,
160
160
type: "success",
161
161
chainId: Number(formValues.chain),
162
162
}),
163
163
);
164
164
165
+
contractAddressRef.current=contractAddress;
166
+
165
167
// add contract to project in background
166
168
addContractToProject.mutateAsync({
167
169
teamId: props.teamId,
@@ -172,8 +174,6 @@ export function CreateNFTPage(props: {
Copy file name to clipboardExpand all lines: apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/(sidebar)/assets/create/nft/upload-nfts/single-upload/single-upload-nft.tsx
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -175,7 +175,7 @@ export function SingleUploadNFT(props: {
175
175
>
176
176
<Input
177
177
id="name"
178
-
placeholder="My NFT Collection"
178
+
placeholder="My NFT"
179
179
{...form.register("name")}
180
180
/>
181
181
</FormFieldSetup>
@@ -189,7 +189,7 @@ export function SingleUploadNFT(props: {
0 commit comments