Skip to content

Commit

Permalink
fix: use image.tmdb.org for setup/login backdrop images (#2966)
Browse files Browse the repository at this point in the history
  • Loading branch information
Ryan Cohen committed Aug 23, 2022
1 parent 507227a commit 3b26338
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/Login/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ const Login = () => {
<ImageFader
backgroundImages={
backdrops?.map(
(backdrop) => `https://www.themoviedb.org/t/p/original${backdrop}`
(backdrop) => `https://image.tmdb.org/t/p/original${backdrop}`
) ?? []
}
/>
Expand Down
2 changes: 1 addition & 1 deletion src/components/Setup/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ const Setup = () => {
<ImageFader
backgroundImages={
backdrops?.map(
(backdrop) => `https://www.themoviedb.org/t/p/original${backdrop}`
(backdrop) => `https://image.tmdb.org/t/p/original${backdrop}`
) ?? []
}
/>
Expand Down

0 comments on commit 3b26338

Please sign in to comment.