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 3604577 commit b03fa1aCopy full SHA for b03fa1a
packages/db/src/study/SessionController.ts
@@ -226,11 +226,11 @@ export class SessionController<TView = unknown> extends Loggable {
226
return items;
227
};
228
229
- const extractHydratedItems = (limit: number = 10) => {
230
- const items = [];
231
- const hydratedCount = this.hydrationService.hydratedCount;
+ const extractHydratedItems = () => {
232
// We can't easily iterate the hydrated queue without dequeuing,
233
- // so we'll just report the count
+ // so we'll just report the count via hydratedCache.count below
+
+ const items: any[] = [];
234
235
236
0 commit comments