Skip to content

Commit

Permalink
fix feedbackScreen showIcon
Browse files Browse the repository at this point in the history
  • Loading branch information
marcoskolodny committed Aug 23, 2024
1 parent 5317c10 commit 4317133
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/__stories__/feedback-screen-story.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ type FeedbackScreenArgs = {
linkText: string;
description: string;
animateText: boolean;
showIcon: boolean;
icon: boolean;
navbar: boolean;
inverse: boolean;
imageUrl: string | null;
Expand All @@ -85,7 +85,7 @@ export const FeedbackScreenStory: StoryComponent<FeedbackScreenArgs> = ({
description,
multipleParagraphs,
animateText,
showIcon,
icon,
navbar,
inverse,
imageUrl,
Expand All @@ -103,7 +103,7 @@ export const FeedbackScreenStory: StoryComponent<FeedbackScreenArgs> = ({
multipleParagraphs ? [description, 'paragraph 2', 'paragraph 3'] : description
}
animateText={animateText}
icon={showIcon ? <IconOrders /> : undefined}
icon={icon ? <IconOrders /> : undefined}
imageUrl={imageUrl ?? undefined}
imageFit={imageFit}
primaryButton={
Expand Down Expand Up @@ -144,7 +144,7 @@ FeedbackScreenStory.args = {
description: 'Description',
multipleParagraphs: false,
animateText: true,
showIcon: true,
icon: true,
navbar: true,
inverse: false,
imageUrl: '',
Expand Down

0 comments on commit 4317133

Please sign in to comment.