From d6c11a723195e6158db6c4da9df172fb1acfecc0 Mon Sep 17 00:00:00 2001 From: dan Date: Sun, 15 Sep 2024 20:14:46 +0100 Subject: Fix wrong empty state for liked by (#5343) --- src/view/com/post-thread/PostQuotes.tsx | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'src/view/com/post-thread/PostQuotes.tsx') diff --git a/src/view/com/post-thread/PostQuotes.tsx b/src/view/com/post-thread/PostQuotes.tsx index 48c8a69ef..6115ae584 100644 --- a/src/view/com/post-thread/PostQuotes.tsx +++ b/src/view/com/post-thread/PostQuotes.tsx @@ -97,11 +97,17 @@ export function PostQuotes({uri}: {uri: string}) { } }, [isFetchingNextPage, hasNextPage, isError, fetchNextPage]) - if (isLoadingUri || isLoadingQuotes || isError) { + if (quotes.length < 1) { return ( ) -- cgit 1.4.1