diff --git a/packages/frontend/src/components/menu/filters.tsx b/packages/frontend/src/components/menu/filters.tsx index 0b8cdfc0..5c7bc118 100644 --- a/packages/frontend/src/components/menu/filters.tsx +++ b/packages/frontend/src/components/menu/filters.tsx @@ -1117,7 +1117,7 @@ function Content() {
- -

- A TMDB access token is required to fetch titles from - the TMDB API. You can get it from your{' '} - - TMDB Account Settings - -

-

- - } - disabled={!userData.titleMatching?.enabled} - required={!status?.settings.tmdbApiAvailable} - value={userData.tmdbAccessToken} - placeholder="Enter your TMDB access token" - onValueChange={(value) => { - setUserData((prev) => ({ - ...prev, - tmdbAccessToken: value, - })); - }} - /> -
- Get your API Key from{' '} @@ -323,6 +323,45 @@ function Content() { }} /> + + + +

+ You can get it from your{' '} + + TMDB Account Settings + +

+

+ + } + required={!status?.settings.tmdbApiAvailable} + value={userData.tmdbAccessToken} + placeholder="Enter your TMDB access token" + onValueChange={(value) => { + setUserData((prev) => ({ + ...prev, + tmdbAccessToken: value, + })); + }} + /> +
+