From 46a7332bfc15f567191ec95a3d6dda9917038964 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mateus=20Felipe=20Gon=C3=A7alves?= Date: Thu, 13 Jul 2023 16:59:52 -0300 Subject: [PATCH] feat(providers): add kbar provider on providers list --- src/app/providers.tsx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/app/providers.tsx b/src/app/providers.tsx index 3ef3ec0c..e049e929 100644 --- a/src/app/providers.tsx +++ b/src/app/providers.tsx @@ -3,11 +3,14 @@ import { ReactNode } from 'react' import { ThemeProvider } from 'next-themes' import { GeistProvider } from '@geist-ui/core' +import { CustomKBarProvider } from '@/shared/components/kbar/provider' export function Providers({ children }: { children: ReactNode }) { return ( - {children} + + {children} + ) }