@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 })}}
@@ -5,6 +5,6 @@
5
5
  <script setup>
6
6
  defineProps({
7
7
  time: String,
8
- blocks: String,
8
+ blocks: [String, BigInt],
9
9
  })
10
10
  </script>
@@ -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
  }
@@ -60,7 +60,7 @@ export const usePriceFeedStore = () => {
60
60
  this.ethUSDRaw = answer
61
61
  this.lastUpdated = nowInSeconds()
62
62
  } catch (error) {
63
- console.error('Error fetching price:', error)
63
+ console.warn('Error fetching price:', error)
64
64
  }
65
65
 
66
66
  return this.ethUSD
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@visualizevalue/mint-app-base",
3
- "version": "0.1.107",
3
+ "version": "0.1.109",
4
4
  "type": "module",
5
5
  "main": "./nuxt.config.ts",
6
6
  "dependencies": {