From 6c41dedd5dc7b6ddcad58cd6b2eebdbf74cee5a8 Mon Sep 17 00:00:00 2001 From: John Mizerek Date: Wed, 11 Mar 2026 14:32:52 -0700 Subject: [PATCH] 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 --- api/businesses/list.cfm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/api/businesses/list.cfm b/api/businesses/list.cfm index a5cc33d..ee24a6e 100644 --- a/api/businesses/list.cfm +++ b/api/businesses/list.cfm @@ -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