From 53758e1a24f2e79753185707920ed91284408c47 Mon Sep 17 00:00:00 2001 From: bigint <69431456+bigint@users.noreply.github.com> Date: Thu, 7 Dec 2023 23:41:26 +0530 Subject: [PATCH] fix: lint (#4140) --- apps/web/src/components/Publication/Actions/Share/Mirror.tsx | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/apps/web/src/components/Publication/Actions/Share/Mirror.tsx b/apps/web/src/components/Publication/Actions/Share/Mirror.tsx index be2a6416e344..412c0795ea28 100644 --- a/apps/web/src/components/Publication/Actions/Share/Mirror.tsx +++ b/apps/web/src/components/Publication/Actions/Share/Mirror.tsx @@ -101,9 +101,7 @@ const Mirror: FC = ({ isLoading, publication, setIsLoading }) => { setShares(shares + 1); updateCache(); toast.success('Post has been mirrored!'); - Leafwatch.track(PUBLICATION.MIRROR, { - publication_id: publication.id - }); + Leafwatch.track(PUBLICATION.MIRROR, { publication_id: publication.id }); }; const { signTypedDataAsync } = useSignTypedData({ onError });