diff options
author | Paul Frazee <pfrazee@gmail.com> | 2023-03-16 19:09:19 -0500 |
---|---|---|
committer | Paul Frazee <pfrazee@gmail.com> | 2023-03-16 19:09:19 -0500 |
commit | f01d43f9e8107160088296fe6b0a9bb753d61032 (patch) | |
tree | 6c66ce84063e7e54efdc9bf4af9c5e1955edb6cc /src/lib/api/feed-manip.ts | |
parent | c50a20d2147b9d6122768385ef00f4da783af12e (diff) | |
download | voidsky-f01d43f9e8107160088296fe6b0a9bb753d61032.tar.zst |
Get home screen's swipable pager working with the drawer
Diffstat (limited to 'src/lib/api/feed-manip.ts')
-rw-r--r-- | src/lib/api/feed-manip.ts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/api/feed-manip.ts b/src/lib/api/feed-manip.ts index 00938be93..7abcaffc6 100644 --- a/src/lib/api/feed-manip.ts +++ b/src/lib/api/feed-manip.ts @@ -140,7 +140,8 @@ export class FeedTuner { for (const item of slice.items) { this.seenUris.add(item.post.uri) } - slice.logSelf() + // DEBUG uncomment to get a quick view of the data + // slice.logSelf() } return slices |