mirror of
https://github.com/fallenbagel/jellyseerr.git
synced 2026-01-01 04:08:45 -05:00
feat: add option to cache images locally (#1213)
This commit is contained in:
@@ -48,7 +48,7 @@ const ProfileHeader: React.FC<ProfileHeaderProps> = ({
|
||||
<div className="flex-shrink-0">
|
||||
<div className="relative">
|
||||
<img
|
||||
className="w-24 h-24 bg-gray-600 rounded-full"
|
||||
className="w-24 h-24 bg-gray-600 rounded-full ring-1 ring-gray-700"
|
||||
src={user.avatar}
|
||||
alt=""
|
||||
/>
|
||||
|
||||
@@ -69,7 +69,7 @@ const UserProfile: React.FC = () => {
|
||||
.filter((media) => media.backdropPath)
|
||||
.map(
|
||||
(media) =>
|
||||
`//image.tmdb.org/t/p/w1920_and_h800_multi_faces/${media.backdropPath}`
|
||||
`https://image.tmdb.org/t/p/w1920_and_h800_multi_faces/${media.backdropPath}`
|
||||
)
|
||||
.slice(0, 6)}
|
||||
/>
|
||||
|
||||
Reference in New Issue
Block a user