Format result count

pull/5385/head
Kamran Ahmed 7 months ago
parent 7cffcccfe8
commit d880f84e0a
  1. 7
      src/components/ExploreAIRoadmap/ExploreAISearch.tsx

@ -57,8 +57,11 @@ export function ExploreAISearch(props: ExploreAISearchProps) {
)}
</div>
{total > 0 && (
<p className="flex-shrink-0 text-sm text-gray-500">
{total} results found
<p className="flex-shrink-0 text-sm text-gray-500 hidden sm:block">
{Intl.NumberFormat('en-US', {
notation: 'compact',
}).format(total)}{' '}
results found
</p>
)}
</div>

Loading…
Cancel
Save