From 9c5a9b572e48c4767a23df20ac8ad763360c05a0 Mon Sep 17 00:00:00 2001 From: Samuel Newman Date: Fri, 15 Aug 2025 16:44:04 +0300 Subject: [PATCH] remove "that's all, folks!" message --- src/view/com/post-thread/PostQuotes.tsx | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/view/com/post-thread/PostQuotes.tsx b/src/view/com/post-thread/PostQuotes.tsx index 82619a8a51..3f80d79ca3 100644 --- a/src/view/com/post-thread/PostQuotes.tsx +++ b/src/view/com/post-thread/PostQuotes.tsx @@ -1,9 +1,9 @@ import {useCallback, useState} from 'react' import { - AppBskyFeedDefs, + type AppBskyFeedDefs, AppBskyFeedPost, moderatePost, - ModerationDecision, + type ModerationDecision, } from '@atproto/api' import {msg} from '@lingui/macro' import {useLingui} from '@lingui/react' @@ -128,8 +128,7 @@ export function PostQuotes({uri}: {uri: string}) { isFetchingNextPage={isFetchingNextPage} error={cleanError(error)} onRetry={fetchNextPage} - showEndMessage - endMessageText={_(msg`That's all, folks!`)} + hasNextPage={hasNextPage} /> } // @ts-ignore our .web version only -prf