diff --git a/packages/core/src/App/Containers/AccountSwitcherWallet/__tests__/account-switcher-wallet-mobile.spec.tsx b/packages/core/src/App/Containers/AccountSwitcherWallet/__tests__/account-switcher-wallet-mobile.spec.tsx
index 71928a784456..76fd6e8397dc 100644
--- a/packages/core/src/App/Containers/AccountSwitcherWallet/__tests__/account-switcher-wallet-mobile.spec.tsx
+++ b/packages/core/src/App/Containers/AccountSwitcherWallet/__tests__/account-switcher-wallet-mobile.spec.tsx
@@ -60,7 +60,7 @@ describe('AccountSwitcherWalletMobile', () => {
},
});
render(, { wrapper: wrapper(store) });
- expect(screen.getByText('Deriv Apps accounts')).toBeInTheDocument();
+ expect(screen.getByText('Options accounts')).toBeInTheDocument();
expect(screen.getByText('AccountSwitcherWalletList')).toBeInTheDocument();
expect(screen.getByRole('button', { name: 'Manage funds' })).toBeInTheDocument();
expect(screen.getByText('Looking for CFDs? Go to Trader’s Hub')).toBeInTheDocument();
diff --git a/packages/core/src/App/Containers/AccountSwitcherWallet/__tests__/account-switcher-wallet.spec.tsx b/packages/core/src/App/Containers/AccountSwitcherWallet/__tests__/account-switcher-wallet.spec.tsx
index 820facb7b8dc..65791d58c90d 100644
--- a/packages/core/src/App/Containers/AccountSwitcherWallet/__tests__/account-switcher-wallet.spec.tsx
+++ b/packages/core/src/App/Containers/AccountSwitcherWallet/__tests__/account-switcher-wallet.spec.tsx
@@ -42,7 +42,7 @@ describe('AccountSwitcherWalletComponent', () => {
});
render(, { wrapper: wrapper(mock) });
- expect(screen.getByText('Deriv Apps accounts')).toBeInTheDocument();
+ expect(screen.getByText('Options accounts')).toBeInTheDocument();
expect(screen.getByText('AccountSwitcherWalletList')).toBeInTheDocument();
expect(screen.getByText('Looking for CFDs? Go to Trader’s Hub')).toBeInTheDocument();
});
diff --git a/packages/core/src/App/Containers/AccountSwitcherWallet/account-switcher-wallet-item.tsx b/packages/core/src/App/Containers/AccountSwitcherWallet/account-switcher-wallet-item.tsx
index 11506c686d25..67478d64b452 100644
--- a/packages/core/src/App/Containers/AccountSwitcherWallet/account-switcher-wallet-item.tsx
+++ b/packages/core/src/App/Containers/AccountSwitcherWallet/account-switcher-wallet-item.tsx
@@ -70,7 +70,7 @@ export const AccountSwitcherWalletItem = observer(
-
+
{is_virtual ? (
diff --git a/packages/core/src/App/Containers/AccountSwitcherWallet/account-switcher-wallet-mobile.tsx b/packages/core/src/App/Containers/AccountSwitcherWallet/account-switcher-wallet-mobile.tsx
index 2ed21675f847..7320d0e593e1 100644
--- a/packages/core/src/App/Containers/AccountSwitcherWallet/account-switcher-wallet-mobile.tsx
+++ b/packages/core/src/App/Containers/AccountSwitcherWallet/account-switcher-wallet-mobile.tsx
@@ -51,7 +51,7 @@ export const AccountSwitcherWalletMobile = observer(({ is_visible, toggle, login
onClose={closeAccountsDialog}
has_close_icon
has_full_height
- title={}
+ title={}
>
diff --git a/packages/core/src/App/Containers/AccountSwitcherWallet/account-switcher-wallet.tsx b/packages/core/src/App/Containers/AccountSwitcherWallet/account-switcher-wallet.tsx
index c0f849938742..8ee7106952ce 100644
--- a/packages/core/src/App/Containers/AccountSwitcherWallet/account-switcher-wallet.tsx
+++ b/packages/core/src/App/Containers/AccountSwitcherWallet/account-switcher-wallet.tsx
@@ -47,7 +47,7 @@ export const AccountSwitcherWallet = observer(({ is_visible, toggle }: TAccountS
-
+
diff --git a/packages/wallets/src/components/AccountsList/AccountsList.tsx b/packages/wallets/src/components/AccountsList/AccountsList.tsx
index c76460a43fa4..735891544744 100644
--- a/packages/wallets/src/components/AccountsList/AccountsList.tsx
+++ b/packages/wallets/src/components/AccountsList/AccountsList.tsx
@@ -25,7 +25,7 @@ const AccountsList = ({ isWalletSettled }: TProps) => {
if (isMobile) {
return (
-
+
diff --git a/packages/wallets/src/components/AccountsList/__tests__/AccountsList.spec.tsx b/packages/wallets/src/components/AccountsList/__tests__/AccountsList.spec.tsx
index e1b9e898ff77..4f451fa71c3a 100644
--- a/packages/wallets/src/components/AccountsList/__tests__/AccountsList.spec.tsx
+++ b/packages/wallets/src/components/AccountsList/__tests__/AccountsList.spec.tsx
@@ -51,12 +51,12 @@ describe('AccountsList', () => {
expect(screen.getByTestId('dt_tab_list')).toBeInTheDocument();
expect(screen.getByTestId('dt_tab_panels')).toBeInTheDocument();
expect(screen.getByText('CFDs')).toBeInTheDocument();
- expect(screen.getByText('Options & multipliers')).toBeInTheDocument();
+ expect(screen.getByText('Options')).toBeInTheDocument();
expect(screen.getByText('Deriv MT5')).toBeInTheDocument();
expect(screen.getByText('Compare accounts')).toBeInTheDocument();
});
- it('should show Options & Multipliers tab in mobile view when the tab active', () => {
+ it('should show Options tab in mobile view when the tab active', () => {
mockUseDevice.mockReturnValue({
isDesktop: false,
isMobile: true,
@@ -65,10 +65,10 @@ describe('AccountsList', () => {
render(, { wrapper });
expect(screen.getByTestId('dt_tab_panels')).toBeInTheDocument();
expect(screen.getByText('CFDs')).toBeInTheDocument();
- expect(screen.getByText('Options & multipliers')).toBeInTheDocument();
+ expect(screen.getAllByText('Options')[0]).toBeInTheDocument();
- screen.getByText('Options & multipliers').click();
- expect(screen.getByText('Deriv Apps')).toBeInTheDocument();
+ screen.getAllByText('Options')[0].click();
+ expect(screen.getAllByText('Options')[0]).toBeInTheDocument();
expect(screen.getByText('Deriv Trader')).toBeInTheDocument();
expect(screen.getByText('Deriv Bot')).toBeInTheDocument();
expect(screen.getByText('SmartTrader')).toBeInTheDocument();
@@ -86,7 +86,7 @@ describe('AccountsList', () => {
expect(screen.getByTestId('dt_desktop_accounts_list')).toBeInTheDocument();
expect(screen.getByText('CFDs')).toBeInTheDocument();
- expect(screen.getByText('Options & Multipliers')).toBeInTheDocument();
+ expect(screen.getAllByText('Options')[0]).toBeInTheDocument();
});
it('should render wallet tour guide in mobile view with isWalletSettled set to false', () => {
diff --git a/packages/wallets/src/components/DerivAppsSection/DerivAppsGetAccount.tsx b/packages/wallets/src/components/DerivAppsSection/DerivAppsGetAccount.tsx
index 27ede13a48b7..52cfae110556 100644
--- a/packages/wallets/src/components/DerivAppsSection/DerivAppsGetAccount.tsx
+++ b/packages/wallets/src/components/DerivAppsSection/DerivAppsGetAccount.tsx
@@ -58,10 +58,10 @@ const DerivAppsGetAccount: React.FC = () => {
shouldHideHeader={isDesktop}
>
}
- title={`Your Deriv Apps (${landingCompanyName}) account is ready`}
+ title={`Your Options (${landingCompanyName}) account is ready`}
/>
,
{
@@ -80,12 +80,10 @@ const DerivAppsGetAccount: React.FC = () => {
- Deriv Apps
+ Options
- {activeWallet?.is_malta_wallet
- ? 'Get a Deriv Apps trading account regulated by MFSA to trade multipliers on Deriv Trader.'
- : 'Get a Deriv Apps trading account to trade options and multipliers on these apps.'}
+ Trade options on multiple platforms with a single account.
diff --git a/packages/wallets/src/components/DerivAppsSection/DerivAppsTradingAccount.tsx b/packages/wallets/src/components/DerivAppsSection/DerivAppsTradingAccount.tsx
index 460057cd2618..9938213b5e9c 100644
--- a/packages/wallets/src/components/DerivAppsSection/DerivAppsTradingAccount.tsx
+++ b/packages/wallets/src/components/DerivAppsSection/DerivAppsTradingAccount.tsx
@@ -20,7 +20,7 @@ const DerivAppsTradingAccount: React.FC = () => {
- Deriv Apps
+ Options
{isLoading ? (
diff --git a/packages/wallets/src/components/OptionsAndMultipliersListing/OptionsAndMultipliersListing.scss b/packages/wallets/src/components/OptionsAndMultipliersListing/OptionsAndMultipliersListing.scss
index ff101b747bfd..8b06ba90a909 100644
--- a/packages/wallets/src/components/OptionsAndMultipliersListing/OptionsAndMultipliersListing.scss
+++ b/packages/wallets/src/components/OptionsAndMultipliersListing/OptionsAndMultipliersListing.scss
@@ -25,6 +25,7 @@
display: flex;
flex-direction: column;
align-items: flex-start;
+ width: 100%;
}
@include mobile {
diff --git a/packages/wallets/src/components/OptionsAndMultipliersListing/OptionsAndMultipliersListing.tsx b/packages/wallets/src/components/OptionsAndMultipliersListing/OptionsAndMultipliersListing.tsx
index 31f7918d5da5..6ccd3b79f72d 100644
--- a/packages/wallets/src/components/OptionsAndMultipliersListing/OptionsAndMultipliersListing.tsx
+++ b/packages/wallets/src/components/OptionsAndMultipliersListing/OptionsAndMultipliersListing.tsx
@@ -103,23 +103,17 @@ const OptionsAndMultipliersListing: React.FC
{!isMobile && (
-
+
)}
-
-
- ,
- ,
- ]}
- defaults='Earn a range of payouts by correctly predicting market price movements with <0>options0>, or get the upside of CFDs without risking more than your initial stake with <1>multipliers1>.'
- />
-
-
+
+ ,
+ ]}
+ defaults='Buy or sell at a specific time for a specific price. <0>Learn more0>'
+ />
+
diff --git a/packages/wallets/src/features/cashier/constants/constants.ts b/packages/wallets/src/features/cashier/constants/constants.ts
index d46095f80ac2..0ac550477617 100644
--- a/packages/wallets/src/features/cashier/constants/constants.ts
+++ b/packages/wallets/src/features/cashier/constants/constants.ts
@@ -193,6 +193,6 @@ export const PlatformDetails = {
light: 'IcWalletOptionsLight',
},
name: 'standard',
- title: 'Deriv Apps',
+ title: 'Options',
},
} as const;
diff --git a/packages/wallets/src/features/cfd/CFDPlatformsList.tsx b/packages/wallets/src/features/cfd/CFDPlatformsList.tsx
index bfb1578a8d77..90c5e1349b8e 100644
--- a/packages/wallets/src/features/cfd/CFDPlatformsList.tsx
+++ b/packages/wallets/src/features/cfd/CFDPlatformsList.tsx
@@ -34,7 +34,7 @@ const CFDPlatformsList: React.FC = ({ onMT5PlatformListLoaded }) => {
target='_blank'
/>,
]}
- defaults='Trade with leverage and tight spreads for better returns on trades. <0>Learn more0>'
+ defaults='Trade bigger positions with less capital. <0>Learn more0>'
/>
= ({ onMT5PlatformListLoaded }) => {
]}
- defaults='Trade with leverage and tight spreads for better returns on trades. <0>Learn more0>'
+ defaults='Trade bigger positions with less capital. <0>Learn more0>'
/>
diff --git a/packages/wallets/src/features/cfd/screens/CFDSuccess/CFDSuccess.tsx b/packages/wallets/src/features/cfd/screens/CFDSuccess/CFDSuccess.tsx
index e09974ee8cea..070276f850ec 100644
--- a/packages/wallets/src/features/cfd/screens/CFDSuccess/CFDSuccess.tsx
+++ b/packages/wallets/src/features/cfd/screens/CFDSuccess/CFDSuccess.tsx
@@ -40,7 +40,7 @@ const CFDSuccess: React.FC = ({
marketType === 'all' &&
(platform === PlatformDetails.dxtrade.platform || platform === PlatformDetails.ctrader.platform);
- let marketTypeTitle = 'Deriv Apps';
+ let marketTypeTitle = 'Options';
if (marketType && platform) {
const isPlatformValid = Object.keys(PlatformDetails).includes(platform);