function getMatchesCountText()

in src/components/search/SearchResults.tsx [318:324]


  function getMatchesCountText(count: number | undefined) {
    if (count === undefined || count === 0) {
      return "no matches found";
    } else {
      return `${count} matches found`;
    }
  }