mirror of
https://github.com/tooot-app/app
synced 2025-01-03 13:10:23 +01:00
No need to show initial toot in history
Nothing changed in there
This commit is contained in:
parent
2a19e1fc2a
commit
81b810496b
@ -161,13 +161,15 @@ const TabSharedHistory: React.FC<TabSharedStackScreenProps<'Tab-Shared-History'>
|
||||
<FlatList
|
||||
style={{ flex: 1, minHeight: '100%' }}
|
||||
data={dataReversed}
|
||||
renderItem={({ item, index }) => (
|
||||
renderItem={({ item, index }) =>
|
||||
index === dataReversed.length - 1 ? null : (
|
||||
<ContentView
|
||||
withoutBoundary={withoutBoundary}
|
||||
item={item}
|
||||
prevItem={dataReversed[index + 1]}
|
||||
/>
|
||||
)}
|
||||
)
|
||||
}
|
||||
ItemSeparatorComponent={ComponentSeparator}
|
||||
/>
|
||||
)
|
||||
|
Loading…
Reference in New Issue
Block a user