Browse Source
Merge pull request #672 from gre/show-real-error
Show real error
master
Thibaut
7 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
4 additions and
0 deletions
-
src/components/modals/AddAccounts/steps/03-step-import.js
|
|
@ -12,6 +12,7 @@ import CurrencyBadge from 'components/base/CurrencyBadge' |
|
|
|
import Button from 'components/base/Button' |
|
|
|
import AccountsList from 'components/base/AccountsList' |
|
|
|
import IconExclamationCircleThin from 'icons/ExclamationCircleThin' |
|
|
|
import TranslatedError from '../../../TranslatedError' |
|
|
|
|
|
|
|
import type { StepProps } from '../index' |
|
|
|
|
|
|
@ -150,6 +151,9 @@ class StepImport extends PureComponent<StepProps> { |
|
|
|
<Box style={{ height: 200 }} align="center" justify="center" color="alertRed"> |
|
|
|
<IconExclamationCircleThin size={43} /> |
|
|
|
<Box mt={4}>{t('app:addAccounts.somethingWentWrong')}</Box> |
|
|
|
<Box mt={4}> |
|
|
|
<TranslatedError error={err} /> |
|
|
|
</Box> |
|
|
|
</Box> |
|
|
|
) |
|
|
|
} |
|
|
|