We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8574bca commit 48d314fCopy full SHA for 48d314f
lib/providers/routines.dart
@@ -619,7 +619,7 @@ class RoutinesProvider with ChangeNotifier {
619
*/
620
Future<List<WorkoutSession>> fetchSessionData() async {
621
final data = await baseProvider.fetchPaginated(
622
- baseProvider.makeUrl(_sessionUrlPath),
+ baseProvider.makeUrl(_sessionUrlPath, query: {'limit': API_MAX_PAGE_SIZE}),
623
);
624
final sessions = data.map((entry) => WorkoutSession.fromJson(entry)).toList();
625
0 commit comments