diff --git a/app/soapbox/features/status/index.tsx b/app/soapbox/features/status/index.tsx index 78a105723..8bced97e4 100644 --- a/app/soapbox/features/status/index.tsx +++ b/app/soapbox/features/status/index.tsx @@ -142,13 +142,13 @@ const getDescendantsIds = createSelector([ type DisplayMedia = 'default' | 'hide_all' | 'show_all'; type RouteParams = { statusId: string }; -interface IStatus { +interface IThread { params: RouteParams, onOpenMedia: (media: ImmutableList, index: number) => void, onOpenVideo: (video: AttachmentEntity, time: number) => void, } -const Status: React.FC = (props) => { +const Thread: React.FC = (props) => { const intl = useIntl(); const history = useHistory(); const dispatch = useAppDispatch(); @@ -719,4 +719,4 @@ const Status: React.FC = (props) => { ); }; -export default Status; +export default Thread;