From 98d6729bfcafe0741a905a2688fceac1c21db7bf Mon Sep 17 00:00:00 2001 From: M0nkeySan Date: Sun, 22 Oct 2023 11:12:57 +0200 Subject: [PATCH] chore: update TMDB thumbnail URL to use w500 --- utils/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/index.js b/utils/index.js index 5518ecf..78e61b9 100644 --- a/utils/index.js +++ b/utils/index.js @@ -2,7 +2,7 @@ import {v4 as uuidv4} from 'uuid' export const TMDB_ENDPOINT = "https://api.themoviedb.org/3" export const TMDB_API_KEY = "d0e6107be30f2a3cb0a34ad2a90ceb6f" -export const TMDB_IMAGE_ENDPOINT = 'https://image.tmdb.org/t/p/original' +export const TMDB_IMAGE_ENDPOINT = 'https://image.tmdb.org/t/p/w500' export const pathToSearchAll = '/search/'