From 55994d00dd95cda9d6c6ffcb9919e5235130d008 Mon Sep 17 00:00:00 2001 From: vvvvvv1vvvvvv <86296331+vvvvvv1vvvvvv@users.noreply.github.com> Date: Tue, 19 Aug 2025 18:46:48 +0800 Subject: [PATCH] fix: rm useless data (#3123) --- src/background/service/gasAccount.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/background/service/gasAccount.ts b/src/background/service/gasAccount.ts index e6ea9711a..e7e58fd1c 100644 --- a/src/background/service/gasAccount.ts +++ b/src/background/service/gasAccount.ts @@ -54,7 +54,9 @@ class GasAccountService { this.store.sig = sig; this.store.accountId = account?.address; this.store.account = { - ...account!, + address: account.address, + brandName: account.brandName, + type: account.type, }; } };