From a369e079568fbe31e604235238169146e4495390 Mon Sep 17 00:00:00 2001 From: Paul Frazee Date: Wed, 22 Mar 2023 11:07:00 -0500 Subject: Fix tsc --- src/lib/api/feed-manip.ts | 17 ----------------- 1 file changed, 17 deletions(-) (limited to 'src/lib/api/feed-manip.ts') diff --git a/src/lib/api/feed-manip.ts b/src/lib/api/feed-manip.ts index 664bacd88..c0f5dde28 100644 --- a/src/lib/api/feed-manip.ts +++ b/src/lib/api/feed-manip.ts @@ -72,21 +72,6 @@ export class FeedViewPostsSlice { this.items.splice(0, 0, {post: this.items[0].reply?.parent}) } } - - logSelf() { - console.log( - `- Slice ${this.items.length}${this.isThread ? ' (thread)' : ''} -`, - ) - for (const item of this.items) { - console.log( - ` ${item.reason ? `RP by ${item.reason.by.handle}: ` : ''}${ - item.post.author.handle - }: ${item.reply ? `(Reply ${item.reply.parent.author.handle}) ` : ''}${ - item.post.record.text - }`, - ) - } - } } export class FeedTuner { @@ -158,8 +143,6 @@ export class FeedTuner { for (const item of slice.items) { this.seenUris.add(item.post.uri) } - // DEBUG uncomment to get a quick view of the data - // slice.logSelf() } return slices -- cgit 1.4.1