Skip to content

Commit

Permalink
refactor(EmptyState): remove redundant fragment
Browse files Browse the repository at this point in the history
  • Loading branch information
JoannaSikora committed Jan 22, 2025
1 parent c6b6e26 commit 7f8d86a
Showing 1 changed file with 5 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -51,13 +51,11 @@ export const EmptyState = ({
</>
)}

<>
{type === 'full' && description && (
<Text noMargin className={styles[`${baseClass}__description`]}>
{description}
</Text>
)}
</>
{type === 'full' && description && (
<Text noMargin className={styles[`${baseClass}__description`]}>
{description}
</Text>
)}
{actions && (
<div
className={cx(
Expand Down

0 comments on commit 7f8d86a

Please sign in to comment.