Skip to content

Commit

Permalink
Fix new serial number problem
Browse files Browse the repository at this point in the history
  • Loading branch information
wraitii committed Jan 23, 2024
1 parent 859f4f1 commit 7804017
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/collections/MassMint.vue
Original file line number Diff line number Diff line change
Expand Up @@ -373,7 +373,7 @@ const storeOneObject = async () => {
async () => {
const traits = await pushModal(RecipientMappingModal, {
initialMapping: {
serial_number: '' + Object.keys(existingItems.value?.[collection.value] ?? {}).length,
serial_number: '' + (Object.keys(existingItems.value?.[collection.value] ?? {}).length + 1),
Family: family,
Season: season,
},
Expand Down

0 comments on commit 7804017

Please sign in to comment.