Skip to content

Commit 86f65c2

Browse files
authored
Disable rowan imports/exports (#857)
* disable rowan imports and exports * testnet release 2.14.27
1 parent 1928444 commit 86f65c2

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

app/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "app",
3-
"version": "2.14.26",
3+
"version": "2.14.27",
44
"private": true,
55
"scripts": {
66
"bump": "bump patch --tag --commit 'testnet release '",

app/src/views/BalancePage/BalanceRow.tsx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,13 +66,15 @@ export default defineComponent({
6666
const isEthBridgeDisabled = computed(
6767
() =>
6868
flagsStore.state.remoteFlags.DISABLE_ETH_BRIDGE &&
69-
props.tokenItem.asset.homeNetwork === "ethereum",
69+
(props.tokenItem.asset.homeNetwork === "ethereum" ||
70+
props.tokenItem.asset.homeNetwork === "sifchain"), // disable rowan imports
7071
);
7172

7273
const isEthBridgeExportDisabled = computed(
7374
() =>
7475
flagsStore.state.remoteFlags.DISABLE_ETH_BRIDGE_EXPORT &&
75-
props.tokenItem.asset.homeNetwork === "ethereum",
76+
(props.tokenItem.asset.homeNetwork === "ethereum" ||
77+
props.tokenItem.asset.homeNetwork === "sifchain"), // disable rowan exports
7678
);
7779

7880
const importItem = computed(() => ({

0 commit comments

Comments
 (0)