From f08211e2a1240cb5731fd55094ea8f70cdb5b986 Mon Sep 17 00:00:00 2001 From: "P. Reis" Date: Sat, 4 May 2024 10:29:08 -0300 Subject: [PATCH] refactor(admin-accounts): resolve import specifier via the active import map --- src/views/mastodon/admin-accounts.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/mastodon/admin-accounts.ts b/src/views/mastodon/admin-accounts.ts index 7914776..8023161 100644 --- a/src/views/mastodon/admin-accounts.ts +++ b/src/views/mastodon/admin-accounts.ts @@ -1,7 +1,7 @@ import { type DittoEvent } from '@/interfaces/DittoEvent.ts'; import { nostrDate } from '@/utils.ts'; -import { accountFromPubkey, renderAccount } from './accounts.ts'; +import { accountFromPubkey, renderAccount } from '@/views/mastodon/accounts.ts'; async function renderAdminAccount(event: DittoEvent) { const d = event.tags.find(([name]) => name === 'd')?.[1]!;