From a5ee31a8d083329afde1f77c750b21866ea9e0eb Mon Sep 17 00:00:00 2001 From: "wangyixuan.byte" Date: Tue, 24 Mar 2026 15:38:11 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E6=95=B0=E5=AD=97=E4=BA=BA=E7=A7=BB?= =?UTF-8?q?=E5=8A=A8=E7=AB=AF=E5=B1=95=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/FullScreenCard/index.tsx | 3 ++- src/pages/MainPage/MainArea/Room/index.tsx | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/src/components/FullScreenCard/index.tsx b/src/components/FullScreenCard/index.tsx index 773d7db..8c684f2 100644 --- a/src/components/FullScreenCard/index.tsx +++ b/src/components/FullScreenCard/index.tsx @@ -8,6 +8,7 @@ import UserTag from '../UserTag'; import { RootState } from '@/store'; import style from './index.module.less'; import { useScene } from '@/lib/useCommon'; +import { isMobile } from '@/utils/utils'; export const LocalFullID = 'local-full-player'; export const RemoteFullID = 'remote-full-player'; @@ -29,7 +30,7 @@ function FullScreenCard() { style={{ background: 'unset' }} >
- + {!isMobile() ? : null}
); diff --git a/src/pages/MainPage/MainArea/Room/index.tsx b/src/pages/MainPage/MainArea/Room/index.tsx index 8093ced..77e815a 100644 --- a/src/pages/MainPage/MainArea/Room/index.tsx +++ b/src/pages/MainPage/MainArea/Room/index.tsx @@ -28,7 +28,7 @@ function Room() { {isShowSubtitle && !isMobile() ? ( ) : null} - {(isFullScreen || isAvatarScene) && !isMobile() ? ( + {isAvatarScene || (isFullScreen && !isMobile()) ? ( ) : isMobile() && isShowSubtitle ? null : (