streaming.ts: remove unused import of getAuthor

This commit is contained in:
Alex Gleason 2024-03-20 13:49:44 -05:00
parent 25a4384587
commit ccffe3abea
No known key found for this signature in database
GPG Key ID: 7211D1F99744FBB7
1 changed files with 1 additions and 1 deletions

View File

@ -2,7 +2,7 @@ import { NostrFilter } from '@soapbox/nspec';
import { type AppController } from '@/app.ts';
import { Conf } from '@/config.ts';
import { Debug, z } from '@/deps.ts';
import { getAuthor, getFeedPubkeys } from '@/queries.ts';
import { getFeedPubkeys } from '@/queries.ts';
import { Sub } from '@/subs.ts';
import { bech32ToPubkey } from '@/utils.ts';
import { renderStatus } from '@/views/mastodon/statuses.ts';