Skip to content

Commit

Permalink
fix: specify cached image type (#1237)
Browse files Browse the repository at this point in the history
  • Loading branch information
gauthier-th authored Jan 8, 2025
1 parent 1755877 commit d71ee58
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/components/MovieDetails/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -1074,6 +1074,7 @@ const MovieDetails = ({ movie }: MovieDetailsProps) => {
key={`provider-${p.id}`}
>
<CachedImage
type="tmdb"
src={'https://image.tmdb.org/t/p/w45/' + p.logoPath}
alt={p.name}
width={32}
Expand Down
1 change: 1 addition & 0 deletions src/components/TvDetails/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -1254,6 +1254,7 @@ const TvDetails = ({ tv }: TvDetailsProps) => {
key={`provider-${p.id}`}
>
<CachedImage
type="tmdb"
src={'https://image.tmdb.org/t/p/w45/' + p.logoPath}
alt={p.name}
width={32}
Expand Down

0 comments on commit d71ee58

Please sign in to comment.