Skip to content
Snippets Groups Projects
Unverified Commit de6bd329 authored by Matheus Barbosa Silva's avatar Matheus Barbosa Silva Committed by GitHub
Browse files

regression: Fix lint in ThreadMetrics (#34006)

parent 66ecc64f
No related branches found
No related tags found
No related merge requests found
......@@ -11,10 +11,10 @@ import type { ReactElement } from 'react';
import React from 'react';
import { useTranslation } from 'react-i18next';
import { useTimeAgo } from '../../../hooks/useTimeAgo';
import { useGoToThread } from '../../../views/room/hooks/useGoToThread';
import ThreadMetricsFollow from './ThreadMetricsFollow';
import ThreadMetricsParticipants from './ThreadMetricsParticipants';
import { useTimeAgo } from '../../../hooks/useTimeAgo';
import { useGoToThread } from '../../../views/room/hooks/useGoToThread';
type ThreadMetricsProps = {
unread: boolean;
......
......@@ -4,8 +4,8 @@ import { useToastMessageDispatch, useTranslation } from '@rocket.chat/ui-context
import type { ReactElement } from 'react';
import React, { useCallback } from 'react';
import { useToggleFollowingThreadMutation } from '../../../views/room/contextualBar/Threads/hooks/useToggleFollowingThreadMutation';
import ThreadMetricsBadge from './ThreadMetricsUnreadBadge';
import { useToggleFollowingThreadMutation } from '../../../views/room/contextualBar/Threads/hooks/useToggleFollowingThreadMutation';
type ThreadMetricsFollowProps = {
following: boolean;
......
......@@ -4,11 +4,11 @@ import { MessageAvatar } from '@rocket.chat/ui-avatar';
import type { ComponentProps, ReactElement, ReactNode } from 'react';
import React, { memo } from 'react';
import ThreadListMetrics from './ThreadListMetrics';
import Emoji from '../../../../../components/Emoji';
import ThreadMetricsFollow from '../../../../../components/message/content/ThreadMetricsFollow';
import ThreadMetricsUnreadBadge from '../../../../../components/message/content/ThreadMetricsUnreadBadge';
import { useTimeAgo } from '../../../../../hooks/useTimeAgo';
import ThreadListMetrics from './ThreadListMetrics';
type ThreadListMessageProps = {
_id: IMessage['_id'];
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment