Skip to content

Commit

Permalink
Fix/cleanup (#864)
Browse files Browse the repository at this point in the history
* do not show small pools by default

* make non working links inactive

* testnet release 2.14.32
  • Loading branch information
pgoos authored Jan 16, 2024
1 parent 893bcd6 commit d55e0bc
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 5 deletions.
2 changes: 1 addition & 1 deletion app/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "app",
"version": "2.14.31",
"version": "2.14.32",
"private": true,
"scripts": {
"bump": "bump patch --tag --commit 'testnet release '",
Expand Down
10 changes: 8 additions & 2 deletions app/src/components/NavSidePanel/NavSidePanel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,10 @@ export default defineComponent({
<NavSidePanelItem
displayName="Charts"
icon="navigation/charts"
href="https://dexscreener.com/sifchain/cusdc"
href=""
class="opacity-50"
style="pointer-events: none;"
// href="https://dexscreener.com/sifchain/cusdc"
/>
<NavSidePanelItem
icon="navigation/changelog"
Expand Down Expand Up @@ -203,7 +206,10 @@ export default defineComponent({
<NavSidePanelItem
displayName="Rowan Faucet"
icon="navigation/rowan"
href="https://stakely.io/faucet/sifchain-rowan"
// href="https://stakely.io/faucet/sifchain-rowan"
href=""
class="opacity-50"
style="pointer-events: none;"
/>
)}
<Tooltip
Expand Down
2 changes: 1 addition & 1 deletion app/src/views/PoolPage/PoolPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export default defineComponent({
sortBy: "pairedApr" as PoolPageColumnId,
sortReverse: false,
searchQuery: "",
showSmallPools: true,
showSmallPools: false,
};
},
setup() {
Expand Down
2 changes: 1 addition & 1 deletion app/src/views/StatsPage/StatsPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ export default defineComponent({

const searchQuery = ref("");

const showSmallPools = ref(true);
const showSmallPools = ref(false);

const finalStats = computed(() => {
return statsRef.value.filter((item) => {
Expand Down

0 comments on commit d55e0bc

Please sign in to comment.