Compare commits

..

2 Commits

Author SHA1 Message Date
Aleksandr Bautin bb8500204e
fix manifestUrl 9 months ago
Aleksandr Bautin 0a69c37140
* 10 months ago
  1. 7
      src/components/ZoneTable.vue
  2. 2
      src/main.ts
  3. 2
      src/views/Explore.vue

7
src/components/ZoneTable.vue

@ -33,7 +33,7 @@
</thead>
<tbody class="table_content">
<tr v-for="zone in zones" :key="zone.zone">
<td class="zone">
<td v-if="zone.zone !== 'ton'" class="zone">
<router-link
:to="{
name: 'GetZ',
@ -44,7 +44,10 @@
{{ zone.zone }}
</router-link>
</td>
<td style="display: flex; justify-content: flex-end">
<td
v-if="zone.zone !== 'ton'"
style="display: flex; justify-content: flex-end"
>
<ZonePricing :zone="zone" />
</td>
</tr>

2
src/main.ts

@ -20,7 +20,7 @@ class State {
constructor() {
this.connector = new TonConnect({
manifestUrl: "https://front.agorata.io/tonconnect-manifest.json",
manifestUrl: "https://agorata.io/tonconnect-manifest.json",
});
this.initialization = this.initialize();
}

2
src/views/Explore.vue

@ -255,7 +255,7 @@ export default {
messages: [
{
amount: (0.05 * 1000000000).toString(),
address: this.wallet_rec ?? this.result.nft_info.address,
address: this.result.nft_info.address,
payload: message,
},
],

Loading…
Cancel
Save