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