refactor(#91): Address PR comments

This commit is contained in:
Josh Creek
2026-06-16 15:46:12 +01:00
parent 8255fb4c67
commit 19e4d7b727
2 changed files with 4 additions and 4 deletions
@@ -131,7 +131,7 @@ class CombinedDataRepository {
query = query.eq('regionToCatchIn', region);
}
const { data, error } = await query.range(start, end);
const { data, error } = await query.order('id', { ascending: true }).range(start, end);
if (error) {
console.error('Error fetching forms for game:', error);