fix(game): 关闭桌面端连续效果预览强制显示

- 将 FORCE_DESKTOP_STREAK_EFFECT_PREVIEW 常量设置为 false
- 禁用桌面端连续效果的强制预览模式
This commit is contained in:
JiaJun
2026-07-16 14:47:48 +08:00
parent 596d435d52
commit c841eb6688

View File

@@ -17,7 +17,7 @@ import { DesktopCountdown } from '@/features/game/components/desktop/desktop-cou
import { useGameStatusVm } from '@/hooks/use-game-status-vm.ts' import { useGameStatusVm } from '@/hooks/use-game-status-vm.ts'
import { cn } from '@/lib/utils.ts' import { cn } from '@/lib/utils.ts'
const FORCE_DESKTOP_STREAK_EFFECT_PREVIEW = true const FORCE_DESKTOP_STREAK_EFFECT_PREVIEW = false
export function DesktopStatusLine() { export function DesktopStatusLine() {
const { t } = useTranslation() const { t } = useTranslation()