fix: Recent requests requester name

This commit is contained in:
herrrta
2025-03-05 20:16:42 -05:00
parent 66f61c3c38
commit d33baf07d3

View File

@@ -17,7 +17,7 @@ import {useTranslation} from "react-i18next";
import {MediaStatus} from "@/utils/jellyseerr/server/constants/media"; import {MediaStatus} from "@/utils/jellyseerr/server/constants/media";
import {textShadowStyle} from "@/components/jellyseerr/discover/GenericSlideCard"; import {textShadowStyle} from "@/components/jellyseerr/discover/GenericSlideCard";
import {Colors} from "@/constants/Colors"; import {Colors} from "@/constants/Colors";
import {Tags} from "@/components/GenreTags"; import {Tag, Tags} from "@/components/GenreTags";
interface Props extends ViewProps { interface Props extends ViewProps {
item?: MovieResult | TvResult | MovieDetails | TvDetails; item?: MovieResult | TvResult | MovieDetails | TvDetails;
@@ -156,12 +156,10 @@ const JellyseerrPoster: React.FC<Props> = ({
</View> </View>
</> </>
)} )}
<Text <Tag
className="absolute right-1 top-1 text-right font-bold" className="absolute right-1 top-1 text-right bg-black border border-neutral-800/50"
style={textShadowStyle.shadow} text={mediaRequest?.requestedBy.displayName}
> />
{mediaRequest?.requestedBy.displayName}
</Text>
{requestedSeasons.length > 0 && ( {requestedSeasons.length > 0 && (
<Tags <Tags
className="absolute bottom-1 left-0.5 w-32" className="absolute bottom-1 left-0.5 w-32"