Use correct pluralisation for zero results

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
Johannes Marbach 2026-03-24 10:22:03 +01:00 committed by GitHub
parent f49668d722
commit 59c7282ddb
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -226,5 +226,5 @@ search backend.
// //
const resultsString = (n) => { const resultsString = (n) => {
return n > 1 ? "results" : "result"; return n === 1 ? "result" : "results";
}; };