Skip to content

Commit

Permalink
Merge branch 'master' into fix/remove-margin-apy
Browse files Browse the repository at this point in the history
  • Loading branch information
snobbee authored Nov 20, 2023
2 parents c4301b4 + b384910 commit 8aa8f78
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 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.18",
"version": "2.14.19",
"private": true,
"scripts": {
"bump": "bump patch --tag --commit 'testnet release '",
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: "rewardApy" as PoolPageColumnId,
sortReverse: false,
searchQuery: "",
showSmallPools: false,
showSmallPools: true,
};
},
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 @@ -97,7 +97,7 @@ export default defineComponent({

const searchQuery = ref("");

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

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

0 comments on commit 8aa8f78

Please sign in to comment.