From 34cdc001e70c4e048edbcf05c9d809f2e0fa783d Mon Sep 17 00:00:00 2001 From: Chewbacca Date: Fri, 21 Oct 2022 07:41:05 -0400 Subject: [PATCH] Lint --- app/soapbox/features/status/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/soapbox/features/status/index.tsx b/app/soapbox/features/status/index.tsx index 3800558b8..dbcc373ee 100644 --- a/app/soapbox/features/status/index.tsx +++ b/app/soapbox/features/status/index.tsx @@ -412,7 +412,7 @@ const Thread: React.FC = (props) => { if (next && status) { dispatch(fetchNext(status.id, next)).then(({ next }) => { setNext(next); - }).catch(() => { }); + }).catch(() => {}); } }, 300, { leading: true }), [next, status]);