Skip to content

Commit

Permalink
hotfix/1.14.2 (#728)
Browse files Browse the repository at this point in the history
* fix: hide Gnosis interface

* 1.14.2
  • Loading branch information
evgenyboxer authored Aug 24, 2021
1 parent 4ace228 commit 889a62d
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 5 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@balancer-labs/frontend-v2",
"version": "1.14.1",
"version": "1.14.2",
"engines": {
"node": "14.x",
"npm": ">=7"
Expand Down
3 changes: 2 additions & 1 deletion src/components/navs/AppNav/AppNavSettings.vue
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,8 @@
@update:modelValue="setEthereumTxType"
/>
</div>
<div v-if="!isPolygon" class="px-4 mt-6">
<!-- Hide Gnosis interface switch for now -->
<div v-if="!isPolygon && false" class="px-4 mt-6">
<div class="flex items-baseline">
<span v-text="$t('tradeInterface')" class="font-medium mb-2" />
<BalTooltip>
Expand Down
4 changes: 3 additions & 1 deletion src/store/modules/app.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,9 @@ const state: AppState = {
slippage: lsGet(LS_KEYS.App.TradeSlippage, '0.01'),
tradeLiquidity: lsGet(LS_KEYS.App.TradeLiquidity, LiquiditySelection.Best),
transactionDeadline: lsGet(LS_KEYS.App.TradeDeadline, 20), // minutes
tradeInterface: lsGet(LS_KEYS.App.TradeInterface, TradeInterface.BALANCER)
// Force Balancer interface for now
tradeInterface:
TradeInterface.BALANCER /* lsGet(LS_KEYS.App.TradeInterface, TradeInterface.BALANCER), */
};

const actions = {
Expand Down

3 comments on commit 889a62d

@vercel
Copy link

@vercel vercel bot commented on 889a62d Aug 24, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

app – ./

pm2.vercel.app
app-balancer.vercel.app
app-git-master-balancer.vercel.app
app.balancer.fi

@vercel
Copy link

@vercel vercel bot commented on 889a62d Aug 24, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@vercel
Copy link

@vercel vercel bot commented on 889a62d Aug 24, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.