rm sortBy from idb query

This commit is contained in:
Martti Malmi 2023-08-25 14:20:58 +03:00
parent 008e566462
commit b3d90e04bf

View File

@ -187,7 +187,7 @@ const IndexedDB = {
query = query.limit(filter.limit);
}
// TODO test that the sort is actually working
await query.sortBy('-created_at').each(handleEvent);
await query.each(handleEvent);
},
};