Skip to content

Commit

Permalink
Merge branch 'develop' into chore/perf-userslist
Browse files Browse the repository at this point in the history
  • Loading branch information
KevLehman authored Nov 20, 2024
2 parents 6524d32 + de6bd32 commit ca83c4a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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'];
Expand Down

0 comments on commit ca83c4a

Please sign in to comment.