Skip to content

Commit

Permalink
fix(EmptyState): giving defaults to headingAs in all variants
Browse files Browse the repository at this point in the history
  • Loading branch information
anamikaanu96 committed Dec 20, 2024
1 parent ecde31f commit 74414b9
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ export let ErrorEmptyState = React.forwardRef<
illustrationTheme,
link,
size = defaults.size,
headingAs,
headingAs = defaults.headingAs,
subtitle,
title,

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ export let NoDataEmptyState = React.forwardRef<
illustrationDescription,
link,
size = defaults.size,
headingAs,
headingAs = defaults.headingAs,
subtitle,
title,

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ export let NoTagsEmptyState = React.forwardRef<
illustrationDescription,
link,
size = defaults.size,
headingAs,
headingAs = defaults.headingAs,
subtitle,
title,

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ export let NotFoundEmptyState = React.forwardRef<
illustrationDescription,
link,
size = defaults.size,
headingAs,
headingAs = defaults.headingAs,
subtitle,
title,

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ export let NotificationsEmptyState = React.forwardRef<
illustrationDescription,
link,
size = defaults.size,
headingAs,
headingAs = defaults.headingAs,
subtitle,
title,

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ export let UnauthorizedEmptyState = React.forwardRef<
illustrationDescription,
link,
size = defaults.size,
headingAs,
headingAs = defaults.headingAs,
subtitle,
title,

Expand Down

0 comments on commit 74414b9

Please sign in to comment.