Skip to content

Commit 1c11cfe

Browse files
author
CarrotRub
committed
discovery fix (bad fix just here to placehold)
1 parent 42da2e1 commit 1c11cfe

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/pages/Discovery-01/Discovery.jsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ function DiscoveryPage() {
3535
}
3636
}
3737

38+
//TODO: Fix that soon.
3839
function updateVisibleGames() {
3940
const start = currentPage() * 25;
4041
const end = start + 25;
@@ -56,7 +57,7 @@ function DiscoveryPage() {
5657
onMount(async () => {
5758
const games_list = await parseNewGameData();
5859
setGamesList(games_list);
59-
setVisibleGames(games_list.slice(0, 25)); // Initialize the first page
60+
setVisibleGames(games_list.slice(0, 100)); // Initialize the first page
6061
});
6162

6263
return (

0 commit comments

Comments
 (0)