From 660f388c6b14550f5473d70b79a2a428d3f021c0 Mon Sep 17 00:00:00 2001 From: Hristo Nedelkov Date: Tue, 5 Sep 2023 09:32:29 +0300 Subject: [PATCH] Fix ginormous problem with storybook and redux --- .storybook/preview.tsx | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.storybook/preview.tsx b/.storybook/preview.tsx index 8109ae5c..7fb4847b 100644 --- a/.storybook/preview.tsx +++ b/.storybook/preview.tsx @@ -4,6 +4,8 @@ import { TamaguiProvider } from '@tamagui/web' import { Provider as StatusProvider } from '@status-im/components' import '../src/index.css' import appConfig from '../tamagui.config' +import { Provider as ReduxProvider } from 'react-redux' +import store from '../src/redux/store' const preview: Preview = { parameters: { @@ -14,7 +16,9 @@ const preview: Preview = { return ( - + + + )