diff --git a/src/components/ContainerComponents/Header/Header.tsx b/src/components/ContainerComponents/Header/Header.tsx index d5b20f5afbfbaae61aa4d80104a2b6170990579b..ea33eb9f6bfed660a6ecaae59d1f635d05b8c717 100644 --- a/src/components/ContainerComponents/Header/Header.tsx +++ b/src/components/ContainerComponents/Header/Header.tsx @@ -54,10 +54,24 @@ const Header: React.FC<HeaderProps> = ({ <div className="header-top"> <div className="header-content"> {textKey && ( - <div className="header-text text-22-bold">{t(textKey)}</div> + <div + className={`header-text ${ + screenType === ScreenType.MOBILE + ? 'text-14-normal-uppercase' + : 'text-22-bold' + }`} + > + {t(textKey)} + </div> )} {desktopTitleKey && ( - <div className="header-text-desktop text-22-bold"> + <div + className={`header-text-desktop ${ + screenType === ScreenType.MOBILE + ? 'text-14-normal-uppercase' + : 'text-22-bold' + }`} + > {displayBackArrow && ( <StyledIconButton className="cv-button" diff --git a/src/components/ContainerComponents/ViewContainer/SingleFluidViewContainer.tsx b/src/components/ContainerComponents/ViewContainer/SingleFluidViewContainer.tsx index 3afebee24e7538ca933d33ded9468c33d649869f..eecfe4902630ac584ae8e55ce5b1f81a0155acf8 100644 --- a/src/components/ContainerComponents/ViewContainer/SingleFluidViewContainer.tsx +++ b/src/components/ContainerComponents/ViewContainer/SingleFluidViewContainer.tsx @@ -43,9 +43,6 @@ const SingleFluidViewContainer: React.FC<SingleFluidViewContainerProps> = ({ const defineHeaderHeight = (height: number) => { setHeaderHeight(height) } - useEffect(() => { - console.log('chart', isChartLoading, 'in', isIndicatorsLoading) - }, [isChartLoading, isIndicatorsLoading]) return ( <>