Change "Explore" to "Trending" and remove explanation banners (#34985)

This commit is contained in:
Eugen Rochko 2025-06-12 10:29:42 +02:00 committed by GitHub
commit d1fb957361
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 9 additions and 35 deletions

View file

@ -3,7 +3,7 @@ import { useRef, useEffect, useCallback } from 'react';
import { Helmet } from 'react-helmet';
import { useParams } from 'react-router-dom';
import ExploreIcon from '@/material-icons/400-24px/explore.svg?react';
import TrendingUpIcon from '@/material-icons/400-24px/trending_up.svg?react';
import { expandLinkTimeline } from 'mastodon/actions/timelines';
import { Column } from 'mastodon/components/column';
import type { ColumnRef } from 'mastodon/components/column';
@ -50,7 +50,7 @@ export const LinkTimeline: React.FC<{
<Column bindToDocument={!multiColumn} ref={columnRef} label={story?.title}>
<ColumnHeader
icon='explore'
iconComponent={ExploreIcon}
iconComponent={TrendingUpIcon}
title={story?.title}
onClick={handleHeaderClick}
multiColumn={multiColumn}