From dd30b8eb8bd85f53e9a8937aed81def9e1eb6b1e Mon Sep 17 00:00:00 2001 From: shanshanzhong Date: Sat, 28 Mar 2026 08:36:59 -0700 Subject: [PATCH] =?UTF-8?q?fix:=20notify-settings-form=20=E8=A1=A5?= =?UTF-8?q?=E5=85=85=20enable=5Ftrade=5Fnotify=20=E5=AD=97=E6=AE=B5?= =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E7=B1=BB=E5=9E=8B=E9=94=99=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: claude-flow --- .../src/sections/user/user-profile/notify-settings-form.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/admin/src/sections/user/user-profile/notify-settings-form.tsx b/apps/admin/src/sections/user/user-profile/notify-settings-form.tsx index fd74177..518c252 100644 --- a/apps/admin/src/sections/user/user-profile/notify-settings-form.tsx +++ b/apps/admin/src/sections/user/user-profile/notify-settings-form.tsx @@ -51,6 +51,7 @@ export function NotifySettingsForm({ async function onSubmit(data: NotifySettingsValues) { await updateUserNotifySetting({ ...data, + enable_trade_notify: user.enable_trade_notify ?? false, user_id: user.id, }); toast.success(t("updateSuccess", "Updated successfully"));