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/nft/create-nft-page.tsx
+4-3Lines changed: 4 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -335,21 +335,22 @@ 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/launch/launch-nft.tsx
+7-3Lines changed: 7 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -186,7 +186,7 @@ export function LaunchNFT(props: {
186
186
values: formValues,
187
187
batch: {
188
188
startIndex: batchIndex*batchSize,
189
-
endIndex: (batchIndex+1)*batchSize,
189
+
count:batchSize,
190
190
},
191
191
});
192
192
@@ -197,7 +197,7 @@ export function LaunchNFT(props: {
197
197
values: formValues,
198
198
batch: {
199
199
startIndex: 0,
200
-
endIndex: formValues.nfts.length-1,
200
+
count: formValues.nfts.length,
201
201
},
202
202
});
203
203
}
@@ -258,7 +258,11 @@ export function LaunchNFT(props: {
0 commit comments