We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b453075 commit ee6c094Copy full SHA for ee6c094
admin/src/providers/CommonProviders/index.tsx
@@ -13,11 +13,11 @@ const queryClient = new QueryClient({
13
},
14
});
15
export const CommonProviders: FC<{ children: ReactNode }> = ({ children }) => {
16
+ const { theme } = usePluginTheme();
17
- const theme = usePluginTheme();
18
return (
19
<QueryClientProvider client={queryClient}>
20
- <DesignSystemProvider theme={{ theme }}>
+ <DesignSystemProvider theme={theme}>
21
<UserProvider>
22
{children}
23
</UserProvider>
0 commit comments