diff --git a/front/.storybook/preview.ts b/front/.storybook/preview.ts index df1f1131f..77ee7cdd0 100644 --- a/front/.storybook/preview.ts +++ b/front/.storybook/preview.ts @@ -3,7 +3,7 @@ import { Preview } from '@storybook/react'; import { ThemeProvider } from '@emotion/react'; import { withThemeFromJSXProvider } from '@storybook/addon-styling'; import { lightTheme, darkTheme } from '../src/modules/ui/themes/themes'; -import { RootDecorator } from '../src/testing/decorators'; +import { RootDecorator } from '../src/testing/decorators/RootDecorator'; import 'react-loading-skeleton/dist/skeleton.css'; import { mockedUserJWT } from '../src/testing/mock-data/jwt'; initialize(); diff --git a/front/src/modules/activities/comment/__stories__/Comment.stories.tsx b/front/src/modules/activities/comment/__stories__/Comment.stories.tsx index ced54302d..aaf31f461 100644 --- a/front/src/modules/activities/comment/__stories__/Comment.stories.tsx +++ b/front/src/modules/activities/comment/__stories__/Comment.stories.tsx @@ -1,6 +1,6 @@ import type { Meta, StoryObj } from '@storybook/react'; -import { ComponentDecorator } from '~/testing/decorators'; +import { ComponentDecorator } from '~/testing/decorators/ComponentDecorator'; import { CommentThreadActionBar } from '../../right-drawer/components/CommentThreadActionBar'; import { Comment } from '../Comment'; diff --git a/front/src/modules/activities/comment/__stories__/CommentHeader.stories.tsx b/front/src/modules/activities/comment/__stories__/CommentHeader.stories.tsx index 536a8992d..3e5a53eb3 100644 --- a/front/src/modules/activities/comment/__stories__/CommentHeader.stories.tsx +++ b/front/src/modules/activities/comment/__stories__/CommentHeader.stories.tsx @@ -2,7 +2,7 @@ import type { Meta, StoryObj } from '@storybook/react'; import { DateTime } from 'luxon'; import { CommentThreadActionBar } from '@/activities/right-drawer/components/CommentThreadActionBar'; -import { ComponentDecorator } from '~/testing/decorators'; +import { ComponentDecorator } from '~/testing/decorators/ComponentDecorator'; import { avatarUrl } from '~/testing/mock-data/users'; import { CommentHeader } from '../CommentHeader'; diff --git a/front/src/modules/activities/components/CommentThreadCreateButton.tsx b/front/src/modules/activities/components/CommentThreadCreateButton.tsx index 537e436f6..75e8d5788 100644 --- a/front/src/modules/activities/components/CommentThreadCreateButton.tsx +++ b/front/src/modules/activities/components/CommentThreadCreateButton.tsx @@ -26,7 +26,7 @@ export function CommentThreadCreateButton({