From 9ef854cefdd87ab377c380884e3b252ea65318f2 Mon Sep 17 00:00:00 2001 From: "Carina.Akaia.io" Date: Fri, 14 Jun 2024 19:20:21 +0400 Subject: [PATCH] fix: Provide Redux store to modals --- src/app/_layout/RootProvider.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/app/_layout/RootProvider.tsx b/src/app/_layout/RootProvider.tsx index dcbf41fd..3fe8c4f4 100644 --- a/src/app/_layout/RootProvider.tsx +++ b/src/app/_layout/RootProvider.tsx @@ -12,10 +12,10 @@ export type RootProviderProps = { export const RootProvider: React.FC = ({ children }) => { return ( - - + + {children} - - + + ); };