From ae50afe307de2183256414183f4695e070dcd201 Mon Sep 17 00:00:00 2001 From: Djordje Vlaisavljevic Date: Thu, 19 Sep 2024 20:29:17 +0100 Subject: [PATCH] Fixed linting issue ref https://linear.app/tryghost/issue/AP-307/component-for-replying-to-objects-in-the-inboxfeed --- apps/admin-x-activitypub/src/components/global/APReplyBox.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/admin-x-activitypub/src/components/global/APReplyBox.tsx b/apps/admin-x-activitypub/src/components/global/APReplyBox.tsx index 0a92c650cf..6a62aa3c3c 100644 --- a/apps/admin-x-activitypub/src/components/global/APReplyBox.tsx +++ b/apps/admin-x-activitypub/src/components/global/APReplyBox.tsx @@ -61,7 +61,7 @@ const APReplyBox: React.FC = ({ className ); - async function handleClick(event: React.MouseEvent) { + async function handleClick() { await replyMutation.mutate({id: object.id, content: textValue}, { onSuccess(activity) { setTextValue(''); @@ -102,6 +102,7 @@ const APReplyBox: React.FC = ({