diff --git a/src/screens/Wallets/LNURLWithdraw/Confirm.tsx b/src/screens/Wallets/LNURLWithdraw/Confirm.tsx index 0f5daf784..e018223c9 100644 --- a/src/screens/Wallets/LNURLWithdraw/Confirm.tsx +++ b/src/screens/Wallets/LNURLWithdraw/Confirm.tsx @@ -44,9 +44,9 @@ const Confirm = ({ route }: LNURLWithdrawProps<'Confirm'>): ReactElement => { } dispatch(closeSheet('lnurlWithdraw')); showToast({ - type: 'success', - title: t('lnurl_w_success_title'), - description: t('lnurl_w_success_description'), + type: 'info', + title: t('other:lnurl_withdr_success_title'), + description: t('other:lnurl_withdr_success_msg'), }); }; diff --git a/src/utils/i18n/locales/en/other.json b/src/utils/i18n/locales/en/other.json index 493d4ab08..1d2aeb7ca 100644 --- a/src/utils/i18n/locales/en/other.json +++ b/src/utils/i18n/locales/en/other.json @@ -236,7 +236,7 @@ "string": "Withdraw Requested" }, "lnurl_withdr_success_msg": { - "string": "Your withdraw was successfully requested." + "string": "Your withdraw was successfully requested. Waiting for payment." }, "phone_settings": { "string": "Open Phone Settings" diff --git a/src/utils/i18n/locales/en/wallet.json b/src/utils/i18n/locales/en/wallet.json index 34496b5e1..ea7af6244 100644 --- a/src/utils/i18n/locales/en/wallet.json +++ b/src/utils/i18n/locales/en/wallet.json @@ -633,12 +633,6 @@ "lnurl_w_button": { "string": "Withdraw" }, - "lnurl_w_success_title": { - "string": "Success" - }, - "lnurl_w_success_description": { - "string": "Withdraw Requested Successful" - }, "lnurl_p_title": { "string": "Pay Bitcoin" }, diff --git a/src/utils/lnurl.ts b/src/utils/lnurl.ts index 54a59d411..940c39647 100644 --- a/src/utils/lnurl.ts +++ b/src/utils/lnurl.ts @@ -337,7 +337,7 @@ export const handleLnurlWithdraw = async ({ } showToast({ - type: 'success', + type: 'info', title: i18n.t('other:lnurl_withdr_success_title'), description: i18n.t('other:lnurl_withdr_success_msg'), });