Skip to content

Commit

Permalink
fix: All items count
Browse files Browse the repository at this point in the history
  • Loading branch information
LautaroPetaccio committed Oct 1, 2024
1 parent 6411831 commit ca6e31d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ export const PublishWizardCollectionModal: React.FC<Props & WithAuthorizedAction
case PublishWizardCollectionSteps.PAY_PUBLICATION_FEE:
return <PayPublicationFeeStep {...props} onNextStep={handleOnPublish} onPrevStep={handleOnPrevStep} />
case PublishWizardCollectionSteps.COLLECTION_PUBLISHED:
return <CongratulationsStep collection={collection} onClose={onClose} />
return <CongratulationsStep collection={collection} itemsCount={allItems.length} onClose={onClose} />
default:
return null
}
Expand Down

0 comments on commit ca6e31d

Please sign in to comment.