Skip to content

Commit

Permalink
applied quotation mark change and updated SuccessStory snapshot
Browse files Browse the repository at this point in the history
  • Loading branch information
recondesigns committed Mar 12, 2024
1 parent e0e4a16 commit 093222d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion components/SuccessStory/SuccessStory.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export type SuccessStoryPropsType = {
function SuccessStory({ imageSource, quote, title }: SuccessStoryPropsType) {
return (
<FlatCard header={title} image={{ source: imageSource, alt: '' }}>
<blockquote>{`"${quote}"`}</blockquote>
<blockquote>{`${quote}`}</blockquote>
</FlatCard>
);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ exports[`SuccessStory > should render with required props 1`] = `
}
>
<blockquote>
"Best test of my life!"
Best test of my life!
</blockquote>
</FlatCard>
`;

0 comments on commit 093222d

Please sign in to comment.