Compare commits

..

No commits in common. 'bb8500204e0effb4c19871ceda5355e0ca1c7d88' and 'f9cac6b4dea9d6e28ceb09b04e28095523b88bb3' have entirely different histories.

  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 v-if="zone.zone !== 'ton'" class="zone">
<td class="zone">
<router-link
:to="{
name: 'GetZ',
@ -44,10 +44,7 @@
{{ zone.zone }}
</router-link>
</td>
<td
v-if="zone.zone !== 'ton'"
style="display: flex; justify-content: flex-end"
>
<td 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://agorata.io/tonconnect-manifest.json",
manifestUrl: "https://front.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.result.nft_info.address,
address: this.wallet_rec ?? this.result.nft_info.address,
payload: message,
},
],

Loading…
Cancel
Save