From d36d5b33b685716d115558530ca1ec1798097827 Mon Sep 17 00:00:00 2001 From: Gigi Date: Thu, 9 Oct 2025 16:56:36 +0100 Subject: [PATCH] fix(lint): remove unused isLocalRelay import Remove unused import to fix linter error --- src/components/HighlightItem.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/HighlightItem.tsx b/src/components/HighlightItem.tsx index 18cc92b1..20ea9dfe 100644 --- a/src/components/HighlightItem.tsx +++ b/src/components/HighlightItem.tsx @@ -8,7 +8,7 @@ import { Models, IEventStore } from 'applesauce-core' import { RelayPool } from 'applesauce-relay' import { onSyncStateChange, isEventSyncing } from '../services/offlineSyncService' import { RELAYS } from '../config/relays' -import { areAllRelaysLocal, isLocalRelay } from '../utils/helpers' +import { areAllRelaysLocal } from '../utils/helpers' interface HighlightWithLevel extends Highlight { level?: 'mine' | 'friends' | 'nostrverse'