@@ -172,14 +172,18 @@ export default function Drop({ children, project, drop }: DropProps): JSX.Elemen
172172 < div className = "w-full text-xs font-medium" >
173173 < div className = "flex items-center justify-between" >
174174 < span className = "text-white" >
175- { `Status: ${ dropQuery . data ?. project ?. drop ?. status } - ${ dropQuery . data ?. project ?. drop ?. collection ?. totalMints } /
176- ${ dropQuery . data ?. project ?. drop ?. collection ?. supply } ` }
175+ Status: { dropQuery . data ?. project ?. drop ?. status } -
176+ { dropQuery . data ?. project ?. drop ?. collection ?. totalMints }
177+ { dropQuery . data ?. project ?. drop ?. collection ?. supply &&
178+ `/ ${ dropQuery . data ?. project ?. drop ?. collection ?. supply } ` }
177179 < span className = "text-gray-500" > - minted</ span >
178180 </ span >
179181 { inTheFuture ( startTime ) ? (
180182 < span className = "text-gray-400" > { daysUntil ( startTime ) } to start</ span >
181183 ) : (
182- < span > { `${ percent } %` } </ span >
184+ dropQuery . data ?. project ?. drop ?. collection ?. supply && (
185+ < span > { `${ percent } %` } </ span >
186+ )
183187 ) }
184188 </ div >
185189 < div className = "w-full rounded-full h-[12px] bg-stone-800 mt-1 relative overflow-hidden" >
@@ -245,7 +249,7 @@ export default function Drop({ children, project, drop }: DropProps): JSX.Elemen
245249 < div className = "basis-1/2 h-full flex flex-col px-4 gap-2 text-sm" >
246250 < div className = "flex items-center justify-between gap-2" >
247251 < span className = "text-gray-400" > Royalties</ span >
248- < span > { dropData ?. collection . sellerFeeBasisPoints } </ span >
252+ < span > { dropData ?. collection . royalties } </ span >
249253 </ div >
250254 < div className = "flex items-center justify-between gap-2" >
251255 < span className = "text-gray-400" > Royalties recipients</ span >
0 commit comments