Skip to content

Commit d3b6160

Browse files
Update app.js
1 parent 627d007 commit d3b6160

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,13 +77,13 @@ function loadLeaderboard() {
7777
}
7878

7979
function checkResults() {
80-
fetch("https://your-glitch-app.glitch.me/check-results", { method: "POST" })
80+
fetch("https://year8-chess-tournament-backend.glitch.me/check-results", { method: "POST" })
8181
.then(res => res.json())
8282
.then(data => alert(`Updated games: ${data.updatedGames.length}`));
8383
}
8484

8585
function startRound() {
86-
fetch("https://your-glitch-app.glitch.me/start-round", { method: "POST" })
86+
fetch("https://year8-chess-tournament-backend.glitch.me/start-round", { method: "POST" })
8787
.then(res => res.json())
8888
.then(data => alert(`Started new round with ${data.pairings} games.`));
8989
}

0 commit comments

Comments
 (0)