From eb97a573647e739df1d707f2234a856097790ecb Mon Sep 17 00:00:00 2001 From: NFish Date: Wed, 13 Nov 2024 13:56:14 +0800 Subject: [PATCH] fix: error merge systemFeatures, it may cause error --- web/context/app-context.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/context/app-context.tsx b/web/context/app-context.tsx index fe797663e7..369fe5af19 100644 --- a/web/context/app-context.tsx +++ b/web/context/app-context.tsx @@ -144,7 +144,7 @@ export const AppContextProvider: FC = ({ children }) => theme, setTheme: handleSetTheme, apps: appList.data, - systemFeatures: { ...systemFeatures, ...defaultSystemFeatures }, + systemFeatures: { ...defaultSystemFeatures, ...systemFeatures }, mutateApps, userProfile, mutateUserProfile,