From 2b6e92f03c4d963256348ba66dc8aaee1c4878f6 Mon Sep 17 00:00:00 2001 From: admin <1297598740@qq.com> Date: Mon, 2 Feb 2026 13:03:59 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E6=96=B0=E5=A2=9E=E7=94=A8=E6=88=B7?= =?UTF-8?q?=E8=AE=BE=E7=BD=AE=E5=92=8C=E9=BB=98=E8=AE=A4=E8=B4=A6=E6=88=B7?= =?UTF-8?q?=E7=AE=A1=E7=90=86=E6=9C=8D=E5=8A=A1=EF=BC=8C=E5=8C=85=E5=90=AB?= =?UTF-8?q?=E8=8E=B7=E5=8F=96=E3=80=81=E6=9B=B4=E6=96=B0=E5=8F=8A=E6=B8=85?= =?UTF-8?q?=E9=99=A4/=E8=AE=BE=E7=BD=AE=E9=BB=98=E8=AE=A4=E8=B4=A6?= =?UTF-8?q?=E6=88=B7=E5=8A=9F=E8=83=BD=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/services/settingsService.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/services/settingsService.ts b/src/services/settingsService.ts index c9ea4d6..7fbdb63 100644 --- a/src/services/settingsService.ts +++ b/src/services/settingsService.ts @@ -29,6 +29,9 @@ function mapSettingsResponse(data: any): UserSettings { // Add these just in case they are returned in the main object defaultExpenseAccountId: data.default_expense_account_id, defaultIncomeAccountId: data.default_income_account_id, + phone: data.phone, + email: data.email, + notificationChannel: data.notification_channel, }; } @@ -64,6 +67,9 @@ export async function updateSettings(data: Partial): Promise>('/settings', payload); if (!response.data) {