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