mirror of
https://github.com/tooot-app/app
synced 2025-06-05 22:19:13 +02:00
Try to fix #16
This commit is contained in:
@ -4,10 +4,18 @@ import { SharedTootProp } from './sharedScreens'
|
||||
|
||||
const TabSharedToot: React.FC<SharedTootProp> = ({
|
||||
route: {
|
||||
params: { toot }
|
||||
params: { toot, rootQueryKey }
|
||||
}
|
||||
}) => {
|
||||
return <Timeline page='Toot' toot={toot.id} disableRefresh disableInfinity />
|
||||
return (
|
||||
<Timeline
|
||||
page='Toot'
|
||||
toot={toot.id}
|
||||
rootQueryKey={rootQueryKey}
|
||||
disableRefresh
|
||||
disableInfinity
|
||||
/>
|
||||
)
|
||||
}
|
||||
|
||||
export default TabSharedToot
|
||||
|
Reference in New Issue
Block a user