Fix jank in notifications loading-state rendering
This commit is contained in:
parent
9051aecdcb
commit
39aaa13468
1 changed files with 1 additions and 1 deletions
|
@ -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 && (
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue