Skip to content

Commit b03fa1a

Browse files
committed
type fix
1 parent 3604577 commit b03fa1a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

packages/db/src/study/SessionController.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -226,11 +226,11 @@ export class SessionController<TView = unknown> extends Loggable {
226226
return items;
227227
};
228228

229-
const extractHydratedItems = (limit: number = 10) => {
230-
const items = [];
231-
const hydratedCount = this.hydrationService.hydratedCount;
229+
const extractHydratedItems = () => {
232230
// We can't easily iterate the hydrated queue without dequeuing,
233-
// so we'll just report the count
231+
// so we'll just report the count via hydratedCache.count below
232+
233+
const items: any[] = [];
234234
return items;
235235
};
236236

0 commit comments

Comments
 (0)