From 4123846056e699753dc606fbd748c2e19342adcf Mon Sep 17 00:00:00 2001 From: ysm Date: Fri, 27 Mar 2026 18:13:55 +0800 Subject: [PATCH] =?UTF-8?q?2026=E5=B9=B4=2003=E6=9C=88=2027=E6=97=A5=20?= =?UTF-8?q?=E6=98=9F=E6=9C=9F=E4=BA=94=2018:13:55=20CST?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/App.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/App.tsx b/src/App.tsx index 288e073..d6dedcf 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -122,7 +122,7 @@ function App() { const [showTimezone, setShowTimezone] = useState(() => { // 从 localStorage 读取,默认显示时区 (true) const saved = localStorage.getItem('clock-showTimezone') - return saved === null ? true : saved === 'true' + return saved === null ? false : saved === 'true' }) // 切换样式时保存到 localStorage