diff options
author | Paul Frazee <pfrazee@gmail.com> | 2022-11-28 14:22:19 -0600 |
---|---|---|
committer | Paul Frazee <pfrazee@gmail.com> | 2022-11-28 14:22:19 -0600 |
commit | 39aaa1346832941bfaff0043fb2d575aa1eaeb2f (patch) | |
tree | c930a3522f3095a8ba1864796d068885478da2fe | |
parent | 9051aecdcb8cde459c2ce9f0bc3006250c118f6f (diff) | |
download | voidsky-39aaa1346832941bfaff0043fb2d575aa1eaeb2f.tar.zst |
Fix jank in notifications loading-state rendering
-rw-r--r-- | src/view/com/notifications/Feed.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/view/com/notifications/Feed.tsx b/src/view/com/notifications/Feed.tsx index 78dcd2fa8..d3a911f2a 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 && ( |