We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 09ae7da commit b00d4c8Copy full SHA for b00d4c8
packages/bento-design-system/src/BentoConfigContext.tsx
@@ -22,8 +22,9 @@ export function BentoConfigProvider({
22
// So we retrieve the parent config via useBentoConfig(), which will default to the default config
23
// in case this is the top level provider.
24
const parentConfig = useBentoConfig();
25
+
26
return (
- <BentoConfigContext.Provider value={deepmerge(parentConfig, config)}>
27
+ <BentoConfigContext.Provider value={deepmerge(parentConfig, config) as BentoConfig}>
28
{children}
29
</BentoConfigContext.Provider>
30
);
0 commit comments