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()
} else {
const status = await props.getCompilerDetails()
if (status === 'Failed') {
props.plugin.call('terminal', 'log', { type: 'log', value: 'Consider opening an issue to update our internal store with your desired chainId.' })
if (status === 'Not Found') {
await handleDeploy()
return
}
const tabState = props.runTabState

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

Loading…
Cancel
Save