Status --> Thread

This commit is contained in:
Alex Gleason 2022-08-08 19:54:27 -05:00
parent e0e64f0f5c
commit f4d1cb93cd
No known key found for this signature in database
GPG key ID: 7211D1F99744FBB7

View file

@ -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<AttachmentEntity>, index: number) => void,
onOpenVideo: (video: AttachmentEntity, time: number) => void,
}
const Status: React.FC<IStatus> = (props) => {
const Thread: React.FC<IThread> = (props) => {
const intl = useIntl();
const history = useHistory();
const dispatch = useAppDispatch();
@ -719,4 +719,4 @@ const Status: React.FC<IStatus> = (props) => {
);
};
export default Status;
export default Thread;