From 86c8f945db659a74ba5475e63d6bab8cb13d08d8 Mon Sep 17 00:00:00 2001 From: MadCcc <1075746765@qq.com> Date: Mon, 8 Aug 2022 15:51:34 +0800 Subject: [PATCH] feat: enable hash by default --- components/theme/index.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/components/theme/index.tsx b/components/theme/index.tsx index 175b473516..2249f5b8af 100644 --- a/components/theme/index.tsx +++ b/components/theme/index.tsx @@ -48,6 +48,7 @@ export const DesignTokenContext = React.createContext<{ hashed?: string | boolean; }>({ token: defaultSeedToken, + hashed: true, }); // ================================== Hook ==================================