File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 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 '" ,
Original file line number Diff line number Diff 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 ( ( ) => ( {
You can’t perform that action at this time.
0 commit comments