Skip to content

Commit

Permalink
fix: Provide Redux store to modals
Browse files Browse the repository at this point in the history
  • Loading branch information
carina-akaia committed Jun 14, 2024
1 parent ac018d4 commit 9ef854c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/app/_layout/RootProvider.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ export type RootProviderProps = {

export const RootProvider: React.FC<RootProviderProps> = ({ children }) => {
return (
<NiceModalProvider>
<ReduxProvider store={store}>
<ReduxProvider store={store}>
<NiceModalProvider>
<AuthProvider>{children}</AuthProvider>
</ReduxProvider>
</NiceModalProvider>
</NiceModalProvider>
</ReduxProvider>
);
};

0 comments on commit 9ef854c

Please sign in to comment.