fix base case.

pull/5388/head
Joseph Izang 2 weeks ago committed by Aniket
parent 6774b20bd7
commit 2f93105f36
  1. 4
      libs/remix-ui/run-tab/src/lib/components/contractGUI.tsx
  2. 5
      libs/remix-ui/run-tab/src/lib/run-tab.tsx

@ -233,8 +233,8 @@ export function ContractGUI(props: ContractGUIProps) {
await handleDeploy() await handleDeploy()
} else { } else {
const status = await props.getCompilerDetails() const status = await props.getCompilerDetails()
if (status === 'Failed') { if (status === 'Not Found') {
props.plugin.call('terminal', 'log', { type: 'log', value: 'Consider opening an issue to update our internal store with your desired chainId.' }) await handleDeploy()
return return
} }
const tabState = props.runTabState const tabState = props.runTabState

@ -58,7 +58,7 @@ import { ScenarioPrompt } from './components/scenario'
import { setIpfsCheckedState, setRemixDActivated } from './actions/payload' import { setIpfsCheckedState, setRemixDActivated } from './actions/payload'
import { ChainCompatibleInfo, getCompatibleChain, getCompatibleChains, HardFork, isChainCompatible, isChainCompatibleWithAnyFork } from './actions/evmmap' import { ChainCompatibleInfo, getCompatibleChain, getCompatibleChains, HardFork, isChainCompatible, isChainCompatibleWithAnyFork } from './actions/evmmap'
export type CheckStatus = 'Passed' | 'Failed' export type CheckStatus = 'Passed' | 'Failed' | 'Not Found'
export function RunTabUI(props: RunTabProps) { export function RunTabUI(props: RunTabProps) {
const { plugin } = props const { plugin } = props
@ -138,8 +138,7 @@ export function RunTabUI(props: RunTabProps) {
const IsCompatible = isChainCompatible(ideDefault, targetChainId) const IsCompatible = isChainCompatible(ideDefault, targetChainId)
const chain = await returnCompatibleChain(ideDefault, targetChainId) const chain = await returnCompatibleChain(ideDefault, targetChainId)
if (chain === undefined) { if (chain === undefined) {
plugin.call('terminal', 'log', { type: 'log', value: 'No compatible chain found for the selected EVM version.' }) return 'Not Found'
return 'Failed'
} else { } else {
if (!IsCompatible) { if (!IsCompatible) {
//show modal //show modal

Loading…
Cancel
Save