mirror of
https://github.com/tooot-app/app
synced 2025-06-05 22:19:13 +02:00
@ -37,6 +37,7 @@ export interface Props {
|
||||
disableDetails?: boolean
|
||||
disableOnPress?: boolean
|
||||
isConversation?: boolean
|
||||
isRemote?: boolean
|
||||
}
|
||||
|
||||
// When the poll is long
|
||||
@ -47,7 +48,8 @@ const TimelineDefault: React.FC<Props> = ({
|
||||
highlighted = false,
|
||||
disableDetails = false,
|
||||
disableOnPress = false,
|
||||
isConversation = false
|
||||
isConversation = false,
|
||||
isRemote = false
|
||||
}) => {
|
||||
const status = item.reblog ? item.reblog : item
|
||||
const rawContent = useRef<string[]>([])
|
||||
@ -175,7 +177,8 @@ const TimelineDefault: React.FC<Props> = ({
|
||||
inThread: queryKey?.[1].page === 'Toot',
|
||||
disableDetails,
|
||||
disableOnPress,
|
||||
isConversation
|
||||
isConversation,
|
||||
isRemote
|
||||
}}
|
||||
>
|
||||
{disableOnPress ? (
|
||||
|
Reference in New Issue
Block a user