From b0a3bc8b941341865126d6ec9a7127327ff94133 Mon Sep 17 00:00:00 2001 From: "Tom (plebeius.eth)" Date: Fri, 8 Nov 2024 11:18:47 +0100 Subject: [PATCH] fix eslint --- src/hooks/use-publish-reply.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hooks/use-publish-reply.ts b/src/hooks/use-publish-reply.ts index ccb64d81..90e1f2f4 100644 --- a/src/hooks/use-publish-reply.ts +++ b/src/hooks/use-publish-reply.ts @@ -54,7 +54,7 @@ const usePublishReply = ({ cid, subplebbitAddress, postCid }: { cid: string; sub setReplyStore(newOptions); }, - [subplebbitAddress, parentCid, author, signer, content, link, spoiler, setReplyStore, anonMode, account], + [subplebbitAddress, parentCid, author, signer, content, link, spoiler, setReplyStore, anonMode, account, postCid], ); const resetPublishReplyOptions = useCallback(() => resetReplyStore(parentCid), [parentCid, resetReplyStore]);