views.ts: fix wrong import of toAccount

This commit is contained in:
Alex Gleason 2023-10-06 15:19:27 -05:00
parent 981d0ee693
commit cb1141784e
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 { AppContext } from '@/app.ts';
import { type Filter } from '@/deps.ts'; import { type Filter } from '@/deps.ts';
import * as mixer from '@/mixer.ts'; import * as mixer from '@/mixer.ts';
import { getAuthor } from '@/queries.ts'; import { getAuthor } from '@/queries.ts';
import { toAccount } from '@/transformers/nostr-to-mastoapi.ts'; import { toAccount } from '@/views/nostr-to-mastoapi.ts';
import { paginated } from '@/utils/web.ts'; import { paginated } from '@/utils/web.ts';
/** Render account objects for the author of each event. */ /** Render account objects for the author of each event. */