From cb1141784e4ef99a34e047bc3e23dbca30cb7771 Mon Sep 17 00:00:00 2001 From: Alex Gleason Date: Fri, 6 Oct 2023 15:19:27 -0500 Subject: [PATCH] views.ts: fix wrong import of toAccount --- src/views.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views.ts b/src/views.ts index 2765c6d..db7a51d 100644 --- a/src/views.ts +++ b/src/views.ts @@ -2,7 +2,7 @@ import { AppContext } from '@/app.ts'; import { type Filter } from '@/deps.ts'; import * as mixer from '@/mixer.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'; /** Render account objects for the author of each event. */