From 7323503fbd787c798242114db64201416eeb1886 Mon Sep 17 00:00:00 2001 From: Dingkun Yang Date: Tue, 30 Jan 2024 20:27:18 -0500 Subject: [PATCH] switch on animation for grid --- src/utils/const.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/const.ts b/src/utils/const.ts index 2f16e149b52..47fa71a32f2 100644 --- a/src/utils/const.ts +++ b/src/utils/const.ts @@ -42,7 +42,7 @@ const LIGHTS_ON = true; // IF you outside China please make sure IS_CHINESE = false const IS_CHINESE = false; -const USE_ANIMATION_FOR_GRID = false; +const USE_ANIMATION_FOR_GRID = true; const CHINESE_INFO_MESSAGE = (yearLength: number, year: string): string => { const yearStr = year === 'Total' ? '所有' : ` ${year} `; return `我用 App 记录自己跑步 ${yearLength} 年了,下面列表展示的是${yearStr}的数据`;