From f4d1cb93cdc3321fd5005e374436f0973ff9fb76 Mon Sep 17 00:00:00 2001 From: Alex Gleason Date: Mon, 8 Aug 2022 19:54:27 -0500 Subject: [PATCH] Status --> Thread --- app/soapbox/features/status/index.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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;