From d53b1c7499af107dd8c04def3b55d3bb241d12f1 Mon Sep 17 00:00:00 2001 From: hailin Date: Tue, 6 Jan 2026 22:44:37 -0800 Subject: [PATCH] =?UTF-8?q?fix(admin-web):=20=E4=BF=AE=E5=A4=8D=20ExpiredR?= =?UTF-8?q?ewardsSection=20=E4=B8=AD=20ApiResponse=20=E7=B1=BB=E5=9E=8B?= =?UTF-8?q?=E4=BD=BF=E7=94=A8=E9=94=99=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ApiResponse 类型只有 code, message, data 属性,没有 success 将 response.success && response.data 改为 response.data 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- .../features/system-account-report/SystemAccountsTab.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/admin-web/src/components/features/system-account-report/SystemAccountsTab.tsx b/frontend/admin-web/src/components/features/system-account-report/SystemAccountsTab.tsx index 3cbdf589..b9e8e916 100644 --- a/frontend/admin-web/src/components/features/system-account-report/SystemAccountsTab.tsx +++ b/frontend/admin-web/src/components/features/system-account-report/SystemAccountsTab.tsx @@ -570,7 +570,7 @@ function ExpiredRewardsSection({ data }: { data: SystemAccountReportResponse['ex pageSize, rightType: rightType || undefined, }); - if (response.success && response.data) { + if (response.data) { setEntriesData(response.data); } } catch (error) {