diff --git a/src/components/Stories/components/StoriesLayout/StoriesLayout.tsx b/src/components/Stories/components/StoriesLayout/StoriesLayout.tsx index 0f12277..f2ccd95 100644 --- a/src/components/Stories/components/StoriesLayout/StoriesLayout.tsx +++ b/src/components/Stories/components/StoriesLayout/StoriesLayout.tsx @@ -55,14 +55,14 @@ export const StoriesLayout = (props: StoriesLayoutProps) => { {currentStory.title && (
{currentStory.title}
)} - {currentStory.description && ( + {currentStory.content && (
- {currentStory.description} + {currentStory.content}
)} - {currentStory.content && ( + {!currentStory.content && currentStory.description && (
- {currentStory.content} + {currentStory.description}
)} {currentStory.url && (