Merge pull request #1001 from SiIky/fix/LAM-193/wizard-no-exchange-error
fix: crash on setup wizard when choosing "No exchange"
This commit is contained in:
commit
1b2b8d2f7f
1 changed files with 2 additions and 1 deletions
|
|
@ -38,7 +38,8 @@ const SAVE_ACCOUNTS = gql`
|
|||
}
|
||||
`
|
||||
|
||||
const isConfigurable = it => !R.isNil(it) && !R.contains(it)(['mock-exchange'])
|
||||
const isConfigurable = it =>
|
||||
!R.isNil(it) && !R.contains(it)(['mock-exchange', 'no-exchange'])
|
||||
|
||||
const ChooseExchange = ({ data: currentData, addData }) => {
|
||||
const classes = useStyles()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue