We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 42da2e1 commit 1c11cfeCopy full SHA for 1c11cfe
src/pages/Discovery-01/Discovery.jsx
@@ -35,6 +35,7 @@ function DiscoveryPage() {
35
}
36
37
38
+ //TODO: Fix that soon.
39
function updateVisibleGames() {
40
const start = currentPage() * 25;
41
const end = start + 25;
@@ -56,7 +57,7 @@ function DiscoveryPage() {
56
57
onMount(async () => {
58
const games_list = await parseNewGameData();
59
setGamesList(games_list);
- setVisibleGames(games_list.slice(0, 25)); // Initialize the first page
60
+ setVisibleGames(games_list.slice(0, 100)); // Initialize the first page
61
});
62
63
return (
0 commit comments