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:
parent
5328fda65b
commit
6c41dedd5d
1 changed files with 3 additions and 3 deletions
|
|
@ -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
|
||||
|
|
|
|||
Reference in a new issue