Skip to content

Commit

Permalink
Update title and use static data (test vercel auto-deploy
Browse files Browse the repository at this point in the history
  • Loading branch information
programmist committed Sep 7, 2023
1 parent 021a1aa commit c3fc576
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vite + React + TS</title>
<title>Game Hub</title>
</head>
<body>
<div id="root"></div>
Expand Down
2 changes: 1 addition & 1 deletion src/components/GameGrid.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ interface Props {
}

function GameGrid({ query }: Props) {
const { data: games, error, isLoading } = useGames(query);
const { data: games, error, isLoading } = useGames(query, false);
const skeletons = [
1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20,
];
Expand Down

0 comments on commit c3fc576

Please sign in to comment.