Skip to content

Commit 953d2da

Browse files
committed
UPdate packages to the latest versions
1 parent 3d3c520 commit 953d2da

File tree

2 files changed

+16
-15
lines changed

2 files changed

+16
-15
lines changed

netflix-create-react-vite-app/package.json

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -15,32 +15,32 @@
1515
"preview": "vite preview"
1616
},
1717
"dependencies": {
18-
"@tanstack/react-query": "^5.90.10",
18+
"@tanstack/react-query": "^5.90.11",
1919
"framer-motion": "12.23.24",
20-
"i18next": "^25.6.2",
20+
"i18next": "^25.6.3",
2121
"i18next-browser-languagedetector": "^8.2.0",
2222
"i18next-http-backend": "^3.0.2",
2323
"react": "^19.2.0",
2424
"react-dom": "^19.2.0",
25-
"react-i18next": "^16.3.3",
25+
"react-i18next": "^16.3.5",
2626
"react-router-dom": "^7.9.6",
2727
"styled-components": "^6.1.19"
2828
},
2929
"devDependencies": {
30-
"@biomejs/biome": "2.2.4",
31-
"@playwright/test": "^1.55.0",
32-
"@types/react": "^19.2.2",
33-
"@types/react-dom": "^19.2.1",
30+
"@biomejs/biome": "2.3.7",
31+
"@playwright/test": "^1.57.0",
32+
"@types/react": "^19.2.7",
33+
"@types/react-dom": "^19.2.3",
3434
"@types/react-router-dom": "^5.3.3",
35-
"@types/styled-components": "5.1.34",
36-
"@vitejs/plugin-react": "^5.0.3",
37-
"@tanstack/devtools-vite": "^0.3.3",
38-
"@tanstack/react-query-devtools": "^5.90.2",
35+
"@types/styled-components": "5.1.36",
36+
"@vitejs/plugin-react": "^5.1.1",
37+
"@tanstack/devtools-vite": "^0.3.11",
38+
"@tanstack/react-query-devtools": "^5.91.1",
3939
"husky": "^9.1.7",
40-
"lint-staged": "^16.2.6",
40+
"lint-staged": "^16.2.7",
4141
"typescript": "^5.9.3",
42-
"ultracite": "6.3.3",
43-
"vite": "^7.2.2"
42+
"ultracite": "6.3.6",
43+
"vite": "^7.2.4"
4444
},
4545
"lint-staged": {
4646
"*.{js,jsx,ts,tsx,json,jsonc,css,scss,md,mdx}": [

netflix-create-react-vite-app/src/pages/my-list/my-list.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ import { useMyList } from '../../context/myListContext';
1010
import { useSearchContext } from '../../context/search-context';
1111
import { useLocalListDetails } from '../../hooks/useLocalListDetails';
1212
import { useTranslatedRoutes } from '../../utils/routes';
13+
import { imageUrl } from '../../utils/api';
1314
import type { MovieResult, ShowResult } from '../../utils/types/types';
1415
import {
1516
MoviesGrid,
@@ -115,7 +116,7 @@ export const MyList = () => {
115116
id={movie.id}
116117
media_type={item.media_type}
117118
overview={movie.overview}
118-
src={`https://image.tmdb.org/t/p/w200${movie.poster_path}`}
119+
src={`${imageUrl}${movie.poster_path}`}
119120
title={movie.title || movie.name}
120121
vote_average={movie.vote_average}
121122
/>

0 commit comments

Comments
 (0)