From 7d752443ca76e07e8cd16306e3c3b5e7731d75ad Mon Sep 17 00:00:00 2001 From: GyDi Date: Wed, 15 Jun 2022 02:42:04 +0800 Subject: [PATCH] fix: adjust update profile notice error --- src/components/profile/profile-item.tsx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/components/profile/profile-item.tsx b/src/components/profile/profile-item.tsx index 32c8554c..ca2f0df6 100644 --- a/src/components/profile/profile-item.tsx +++ b/src/components/profile/profile-item.tsx @@ -137,7 +137,10 @@ const ProfileItem = (props: Props) => { await updateProfile(itemData.uid, { with_proxy: withProxy }); mutate("getProfiles"); } catch (err: any) { - Notice.error(err?.message || err.toString()); + const errmsg = err?.message || err.toString(); + Notice.error( + errmsg.replace(/error sending request for url (\S+?): /, "") + ); } finally { setLoadingCache((cache) => ({ ...cache, [itemData.uid]: false })); }