@visualizevalue/mint-app-base 0.1.107 → 0.1.109
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -55,7 +55,7 @@
|
|
|
55
55
|
|
|
56
56
|
<div class="mint-status">
|
|
57
57
|
<p v-if="mintOpen">
|
|
58
|
-
<TokenMintOpen :blocks="blocksRemaining" :time="countDownStr" />
|
|
58
|
+
<TokenMintOpen :blocks="blocksRemaining?.toString()" :time="countDownStr" />
|
|
59
59
|
</p>
|
|
60
60
|
<p v-else-if="currentBlock">
|
|
61
61
|
{{ $t('token.closed_at_block', { block: endBlock })}}
|
|
@@ -163,7 +163,7 @@ export const useOnchainStore = () => {
|
|
|
163
163
|
try {
|
|
164
164
|
await Promise.all(collectionAddresses.map(address => this.fetchCollection(address)))
|
|
165
165
|
|
|
166
|
-
this.artists[artist].collections = collectionAddresses
|
|
166
|
+
this.artists[artist].collections = Array.from(new Set([...this.artists[artist].collections, ...collectionAddresses]))
|
|
167
167
|
} catch (e) {
|
|
168
168
|
console.error(e)
|
|
169
169
|
}
|
package/composables/priceFeed.ts
CHANGED