From 39aaa1346832941bfaff0043fb2d575aa1eaeb2f Mon Sep 17 00:00:00 2001
From: Paul Frazee <pfrazee@gmail.com>
Date: Mon, 28 Nov 2022 14:22:19 -0600
Subject: [PATCH] Fix jank in notifications loading-state rendering

---
 src/view/com/notifications/Feed.tsx | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/view/com/notifications/Feed.tsx b/src/view/com/notifications/Feed.tsx
index 78dcd2fa..d3a911f2 100644
--- a/src/view/com/notifications/Feed.tsx
+++ b/src/view/com/notifications/Feed.tsx
@@ -32,7 +32,7 @@ export const Feed = observer(function Feed({
   }
   return (
     <View style={{flex: 1}}>
-      {view.isLoading && !view.isRefreshing && (
+      {view.isLoading && !view.isRefreshing && !view.hasContent && (
         <NotificationFeedLoadingPlaceholder />
       )}
       {view.hasError && (