mirror of
https://github.com/fallenbagel/jellyseerr.git
synced 2025-12-24 02:39:18 -05:00
fix: use image.tmdb.org for setup/login backdrop images (#2966)
This commit is contained in:
@@ -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}`
|
||||
) ?? []
|
||||
}
|
||||
/>
|
||||
|
||||
Reference in New Issue
Block a user