From 6ae1b4fae9fc12730804afd65edb3d33e696fc40 Mon Sep 17 00:00:00 2001 From: diondiondion Date: Thu, 2 Oct 2025 15:51:47 +0200 Subject: [PATCH] Allow quotes to be displayed in the featured carousel (#36335) --- app/javascript/mastodon/components/featured_carousel.tsx | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/app/javascript/mastodon/components/featured_carousel.tsx b/app/javascript/mastodon/components/featured_carousel.tsx index 195331ef9..df64c43b4 100644 --- a/app/javascript/mastodon/components/featured_carousel.tsx +++ b/app/javascript/mastodon/components/featured_carousel.tsx @@ -20,7 +20,7 @@ import { useDrag } from '@use-gesture/react'; import { expandAccountFeaturedTimeline } from '@/mastodon/actions/timelines'; import { Icon } from '@/mastodon/components/icon'; import { IconButton } from '@/mastodon/components/icon_button'; -import StatusContainer from '@/mastodon/containers/status_container'; +import { StatusQuoteManager } from '@/mastodon/components/status_quoted'; import { usePrevious } from '@/mastodon/hooks/usePrevious'; import { useAppDispatch, useAppSelector } from '@/mastodon/store'; import ChevronLeftIcon from '@/material-icons/400-24px/chevron_left.svg?react'; @@ -218,12 +218,7 @@ const FeaturedCarouselItem: React.FC< ref={handleRef} {...props} > - + ); };