diff --git a/src/app/[locale]/backlog/page.tsx b/src/app/[locale]/backlog/page.tsx index 50101e87..0e3a0ef4 100644 --- a/src/app/[locale]/backlog/page.tsx +++ b/src/app/[locale]/backlog/page.tsx @@ -33,7 +33,7 @@ export default function BacklogViewer() { headerAlign: 'center', renderCell: ({ value }) => ( -
{value}
+ {value}
), width: 270 @@ -49,7 +49,7 @@ export default function BacklogViewer() { headerAlign: 'center', renderCell: ({ value }) => ( -
{value || ""}
+ {value || ""}
), width: 270 diff --git a/src/app/[locale]/games/dlcs/page.tsx b/src/app/[locale]/games/dlcs/page.tsx index 43ec2301..0452338d 100644 --- a/src/app/[locale]/games/dlcs/page.tsx +++ b/src/app/[locale]/games/dlcs/page.tsx @@ -44,7 +44,7 @@ function GamesGalleryList() { } return ( -
+ <> { data.map(game => @@ -82,7 +82,7 @@ function GamesGalleryList() { ) } -
+ ) } diff --git a/src/app/[locale]/games/page.tsx b/src/app/[locale]/games/page.tsx index 1749eb27..8fc49b76 100644 --- a/src/app/[locale]/games/page.tsx +++ b/src/app/[locale]/games/page.tsx @@ -19,10 +19,10 @@ import type { CardGame } from "@/redux/sharedDefintion"; export default function GamesGalleryGrid() { return ( -
+ <> -
+ ); } @@ -69,11 +69,10 @@ function GamesGalleryGridInner() { > {allGames.map(renderRow)} -
+ = (data?.total_pages || 1) } @@ -81,7 +80,7 @@ function GamesGalleryGridInner() { > {t('loadMore')} -
+ ); } diff --git a/src/app/[locale]/games/series/page.tsx b/src/app/[locale]/games/series/page.tsx index aa409e16..e616f148 100644 --- a/src/app/[locale]/games/series/page.tsx +++ b/src/app/[locale]/games/series/page.tsx @@ -44,7 +44,7 @@ function GamesGalleryList() { } return ( -
+ <> { data.map(serie => @@ -82,7 +82,7 @@ function GamesGalleryList() { ) } -
+ ) } diff --git a/src/app/[locale]/tests/page.tsx b/src/app/[locale]/tests/page.tsx index ef8f3cd8..38dca0c9 100644 --- a/src/app/[locale]/tests/page.tsx +++ b/src/app/[locale]/tests/page.tsx @@ -25,31 +25,29 @@ export default function TestsPage() { } return ( -
- - { - data - .items - .map(game => - - - - ) - } - -
+ + { + data + .items + .map(game => + + + + ) + } + ) } \ No newline at end of file