diff --git a/packages/nicolium/src/columns/timeline.tsx b/packages/nicolium/src/columns/timeline.tsx index 292c13f84..adcbd884f 100644 --- a/packages/nicolium/src/columns/timeline.tsx +++ b/packages/nicolium/src/columns/timeline.tsx @@ -3,6 +3,7 @@ import clsx from 'clsx'; import React, { useMemo, useRef, useState } from 'react'; import { defineMessages, FormattedList, FormattedMessage, useIntl } from 'react-intl'; +import HoverAccountWrapper from '@/components/accounts/hover-account-wrapper'; import PullToRefresh from '@/components/pull-to-refresh'; import ScrollTopButton from '@/components/scroll-top-button'; import ScrollableList, { type IScrollableList } from '@/components/scrollable-list'; @@ -217,18 +218,16 @@ const TimelineStatusInfo: React.FC = ({ status, rebloggedBy const renderedAccounts = accounts.slice(0, 2).map( (account) => !!account && ( - - - - - - - + + + + + ), );