Inside a component in storybook I have a simple call
onClick={() => .open({
I haved in the preview.tsx a decorator for MantineProvider & ModalsProvider but 3 modals are created (and i need to close the 3 of them
(Story) => ( <I18nextProvider i18n={i18next}> <MantineProvider theme={Theme}> <ModalsProvider> <Story /> </ModalsProvider> </MantineProvider> </I18nextProvider> )
Am i doing something wrong ?