Skip to content

Commit

Permalink
Disable rowan imports/exports (#857)
Browse files Browse the repository at this point in the history
* disable rowan imports and exports

* testnet release 2.14.27
  • Loading branch information
pgoos authored Dec 15, 2023
1 parent 1928444 commit 86f65c2
Show file tree
Hide file tree
Showing 2 changed files with 5 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.26",
"version": "2.14.27",
"private": true,
"scripts": {
"bump": "bump patch --tag --commit 'testnet release '",
Expand Down
6 changes: 4 additions & 2 deletions app/src/views/BalancePage/BalanceRow.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -66,13 +66,15 @@ export default defineComponent({
const isEthBridgeDisabled = computed(
() =>
flagsStore.state.remoteFlags.DISABLE_ETH_BRIDGE &&
props.tokenItem.asset.homeNetwork === "ethereum",
(props.tokenItem.asset.homeNetwork === "ethereum" ||
props.tokenItem.asset.homeNetwork === "sifchain"), // disable rowan imports
);

const isEthBridgeExportDisabled = computed(
() =>
flagsStore.state.remoteFlags.DISABLE_ETH_BRIDGE_EXPORT &&
props.tokenItem.asset.homeNetwork === "ethereum",
(props.tokenItem.asset.homeNetwork === "ethereum" ||
props.tokenItem.asset.homeNetwork === "sifchain"), // disable rowan exports
);

const importItem = computed(() => ({
Expand Down

1 comment on commit 86f65c2

@vercel
Copy link

@vercel vercel bot commented on 86f65c2 Dec 15, 2023

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:

sifchain-ui – ./

sifchain-ui-sifchain.vercel.app
sifchain-ui-git-master-sifchain.vercel.app
dex.sifchain.finance

Please sign in to comment.