From f1651147a4e9e8cab6348dfd9b81388daf17b201 Mon Sep 17 00:00:00 2001 From: admin <1297598740@qq.com> Date: Thu, 29 Jan 2026 09:51:22 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E6=96=B0=E5=A2=9E=E9=A6=96=E9=A1=B5?= =?UTF-8?q?=E7=BB=84=E4=BB=B6=EF=BC=8C=E5=B1=95=E7=A4=BA=E8=B4=A6=E6=88=B7?= =?UTF-8?q?=E6=A6=82=E8=A7=88=E3=80=81=E8=BF=91=E6=9C=9F=E4=BA=A4=E6=98=93?= =?UTF-8?q?=E3=80=81=E6=94=AF=E5=87=BA=E8=B6=8B=E5=8A=BF=E5=92=8C=E9=A2=84?= =?UTF-8?q?=E7=AE=97=E7=BB=9F=E8=AE=A1=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/Home/Home.tsx | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git a/src/pages/Home/Home.tsx b/src/pages/Home/Home.tsx index 041a03f..bdb0259 100644 --- a/src/pages/Home/Home.tsx +++ b/src/pages/Home/Home.tsx @@ -482,8 +482,7 @@ function Home() { {streakInfo && streakInfo.currentStreak > 0 && (
setShowContributionModal(true)} - title={`最长连续: ${streakInfo.longestStreak} 天\n累计记账: ${streakInfo.totalRecordDays} 天\n点击查看详情`} + title={`最长连续: ${streakInfo.longestStreak} 天\n累计记账: ${streakInfo.totalRecordDays} 天`} > {streakInfo.currentStreak} @@ -531,6 +530,11 @@ function Home() { />
+ {/* Contribution Heatmap */} +
+ +
+ {/* Asset Dashboard - Requirement 8.1 */}
{/* Net Worth Card - Main Hero */} @@ -724,13 +728,6 @@ function Home() { todaySpend={todaySpend} yesterdaySpend={yesterdaySpend} /> - - {/* Contribution Heatmap Modal */} - setShowContributionModal(false)} - streakInfo={streakInfo} - /> ); }