fix: use image.tmdb.org for setup/login backdrop images (#2966)

pull/2968/head
Ryan Cohen 2 years ago committed by GitHub
parent 507227aa49
commit 3b2633812b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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}`
) ?? []
}
/>

@ -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}`
) ?? []
}
/>

Loading…
Cancel
Save