Update empty state

This commit is contained in:
Nate Kelley 2025-09-30 11:10:03 -06:00
parent 8e0a1796ce
commit ed80370bc6
No known key found for this signature in database
GPG Key ID: FD90372AB8D98B4F
1 changed files with 3 additions and 1 deletions

View File

@ -127,7 +127,9 @@ function MentionListInner<T = string>(
/>
))
) : (
<div className="text-gray-light">{emptyState || 'No results'}</div>
<div className="text-gray-light min-h-8 flex items-center justify-center">
{emptyState || 'No results'}
</div>
)}
</div>
</MentionListProvider>