diff --git a/apps/mobile/src/components2024/SeedPhraseManualBackup/SeedPhrase.tsx b/apps/mobile/src/components2024/SeedPhraseManualBackup/SeedPhrase.tsx index 3d3d8baa3..538b5e421 100644 --- a/apps/mobile/src/components2024/SeedPhraseManualBackup/SeedPhrase.tsx +++ b/apps/mobile/src/components2024/SeedPhraseManualBackup/SeedPhrase.tsx @@ -387,7 +387,7 @@ export const SeedPhrase: React.FC = ({ toastHide(); } } else { - toast.show(t('page.nextComponent.createNewAddress.verificationFailed')); + toast.error(t('page.nextComponent.createNewAddress.verificationFailed')); setShuffleCount(val => val + 1); setSelectArr([]); } diff --git a/apps/mobile/src/components2024/Toast/index.tsx b/apps/mobile/src/components2024/Toast/index.tsx index 783292f0b..1322e539a 100644 --- a/apps/mobile/src/components2024/Toast/index.tsx +++ b/apps/mobile/src/components2024/Toast/index.tsx @@ -15,6 +15,7 @@ import { IconTick, IconToastSuccess, } from '@/assets/icons/common'; +import IconError from '@/assets2024/icons/common/cancel.svg'; import React from 'react'; import { ThemeColors2024 } from '@/constant/theme'; @@ -91,11 +92,13 @@ export const toastWithIcon = const info = toastWithIcon(IconCommonInfo); const success = toastWithIcon(IconTick); +const error = toastWithIcon(IconError); export const toast = { show, info, success, + error, positions: Toast.positions, };