From 1644f241d4130bc7e928b277fc79f2ddc56ee619 Mon Sep 17 00:00:00 2001 From: Julien Calixte Date: Sun, 15 Feb 2026 21:21:56 +0100 Subject: [PATCH] chore: fix ts warning --- src/hooks/useATProtoLinks.hook.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hooks/useATProtoLinks.hook.ts b/src/hooks/useATProtoLinks.hook.ts index 3a254af..38726bf 100644 --- a/src/hooks/useATProtoLinks.hook.ts +++ b/src/hooks/useATProtoLinks.hook.ts @@ -9,7 +9,7 @@ export const useATProtoLinks = ( currentAtUri?: Ref | string, ) => { const { addStackedNote } = useRouteQueryStackedNotes() - const linkNote: EventListener = (event) => { + const linkNote = (event: Event) => { const target = event.target as HTMLElement const atUri = target.getAttribute("href")