Bump business list limit from 20 to 50

23 businesses were being cut to 20 when sorted alphabetically (no location),
hiding Win~Dow Venice and other names near end of alphabet.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
John Mizerek 2026-03-11 14:32:52 -07:00
parent 5328fda65b
commit 6c41dedd5d

View file

@ -97,9 +97,9 @@ try {
});
}
// Limit to 20 nearest restaurants
if (arrayLen(rows) > 20) {
rows = arraySlice(rows, 1, 20);
// Limit to 50 nearest restaurants
if (arrayLen(rows) > 50) {
rows = arraySlice(rows, 1, 50);
}
// Provide BOTH keys to satisfy any Flutter casing expectation