Skip to content

Commit

Permalink
fix: remove unnecessary colon (#2669)
Browse files Browse the repository at this point in the history
## What's the purpose of this pull request?

Small fix: The `title` decides if there will be a colon or not.
  • Loading branch information
pedromtec authored Feb 4, 2025
1 parent 4ab7dfb commit b0475c3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ function EmptySearch({ title, term }: EmptySearchProps) {
>
{title && (
<h1 data-fs-empty-search-title>
{title}: <strong>{term}</strong>
{title} <strong>{term}</strong>
</h1>
)}
<EmptyState title="" showLoader />
Expand Down

0 comments on commit b0475c3

Please sign in to comment.