Skip to content

Commit

Permalink
chore: remove fiat from transfer messages
Browse files Browse the repository at this point in the history
  • Loading branch information
lubega-deriv committed Aug 20, 2024
1 parent 6a4e828 commit 6f484b2
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ describe('lifetimeAccountLimitsBetweenWalletsMessageFn', () => {
},
message: (
<Localize
i18n_default_text="You've reached the lifetime transfer limit from your {{sourceAccountName}} to any fiat Wallet. Verify your account to upgrade the limit."
i18n_default_text="You've reached the lifetime transfer limit from your {{sourceAccountName}} to any Wallet. Verify your account to upgrade the limit."
values={{ sourceAccountName: cryptoAccount.accountName }}
/>
),
Expand Down Expand Up @@ -200,7 +200,7 @@ describe('lifetimeAccountLimitsBetweenWalletsMessageFn', () => {
},
message: (
<Localize
i18n_default_text='Your remaining lifetime transfer limit from {{sourceAccountName}} to any fiat Wallets is {{formattedSourceCurrencyRemainder}}. Verify your account to upgrade the limit.'
i18n_default_text='Your remaining lifetime transfer limit from {{sourceAccountName}} to any Wallet is {{formattedSourceCurrencyRemainder}}. Verify your account to upgrade the limit.'
values={{
formattedSourceCurrencyRemainder: '5.00000000 BTC',
sourceAccountName: cryptoAccount.accountName,
Expand Down Expand Up @@ -233,7 +233,7 @@ describe('lifetimeAccountLimitsBetweenWalletsMessageFn', () => {
expect(result).toEqual({
message: (
<Localize
i18n_default_text='The lifetime transfer limit from {{sourceAccountName}} to any fiat Wallets is up to {{formattedSourceCurrencyLimit}}.'
i18n_default_text='The lifetime transfer limit from {{sourceAccountName}} to any Wallet is up to {{formattedSourceCurrencyLimit}}.'
values={{
formattedSourceCurrencyLimit: '10.00000000 BTC',
sourceAccountName: cryptoAccount.accountName,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ const lifetimeAccountLimitsBetweenWalletsMessageFn = ({
/>
) : (
<Localize
i18n_default_text="You've reached the lifetime transfer limit from your {{sourceAccountName}} to any fiat Wallet. Verify your account to upgrade the limit."
i18n_default_text="You've reached the lifetime transfer limit from your {{sourceAccountName}} to any Wallet. Verify your account to upgrade the limit."
values={{ sourceAccountName: sourceAccount.accountName }}
/>
);
Expand All @@ -104,7 +104,7 @@ const lifetimeAccountLimitsBetweenWalletsMessageFn = ({
/>
) : (
<Localize
i18n_default_text='The lifetime transfer limit from {{sourceAccountName}} to any fiat Wallets is up to {{formattedSourceCurrencyLimit}}.'
i18n_default_text='The lifetime transfer limit from {{sourceAccountName}} to any Wallet is up to {{formattedSourceCurrencyLimit}}.'
values={{ formattedSourceCurrencyLimit, sourceAccountName: sourceAccount.accountName }}
/>
);
Expand Down Expand Up @@ -140,7 +140,7 @@ const lifetimeAccountLimitsBetweenWalletsMessageFn = ({
/>
) : (
<Localize
i18n_default_text='Your remaining lifetime transfer limit from {{sourceAccountName}} to any fiat Wallets is {{formattedSourceCurrencyRemainder}}. Verify your account to upgrade the limit.'
i18n_default_text='Your remaining lifetime transfer limit from {{sourceAccountName}} to any Wallet is {{formattedSourceCurrencyRemainder}}. Verify your account to upgrade the limit.'
values={{ formattedSourceCurrencyRemainder, sourceAccountName: sourceAccount.accountName }}
/>
);
Expand Down

0 comments on commit 6f484b2

Please sign in to comment.