fix: Jellyseerr Recent Request slide fixes

- added src for backdrop + poster
- fixed horizontal height issues
This commit is contained in:
herrrta
2025-03-04 21:09:15 -05:00
parent ebcb414b89
commit 4dddc0f926
2 changed files with 13 additions and 16 deletions

View File

@@ -34,7 +34,7 @@ const RequestCard: React.FC<{request: MediaRequest}> = ({request}) => {
});
return (
!isLoading && details && <JellyseerrPoster horizontal showDownloadInfo item={details} mediaRequest={refreshedRequest} />
details && <JellyseerrPoster horizontal showDownloadInfo item={details} mediaRequest={refreshedRequest} />
)
}
@@ -50,9 +50,7 @@ const RecentRequestsSlide: React.FC<SlideProps & ViewProps> = ({ slide, ...props
});
return (
requests &&
requests.results.length > 0 &&
!isError && (
requests && (
<Slide
{...props}
slide={slide}