Skip to content

Commit

Permalink
feat: remove is_real for clevertab div (deriv-com#16440)
Browse files Browse the repository at this point in the history
  • Loading branch information
sergei-deriv authored Aug 13, 2024
1 parent 3b1880c commit d728156
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/appstore/src/modules/traders-hub/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ const TradersHub = observer(() => {
} = client;

const { is_eu_demo, is_eu_real } = useContentFlag();
const { selected_platform_type, setTogglePlatformType, is_eu_user, is_real } = traders_hub;
const { selected_platform_type, setTogglePlatformType, is_eu_user } = traders_hub;
const traders_hub_ref = React.useRef<HTMLDivElement>(null);

const can_show_notify =
Expand Down Expand Up @@ -164,7 +164,7 @@ const TradersHub = observer(() => {
})}
ref={traders_hub_ref}
>
{has_any_real_account && is_real && <div className='get-started-trading-banner-ct' />}
{has_any_real_account && <div className='get-started-trading-banner-ct' />}
{should_show_banner && !has_any_real_account && !is_eu && is_landing_company_loaded && (
<Suspense fallback={<div />}>
<RealAccountCreationBanner />
Expand Down

0 comments on commit d728156

Please sign in to comment.