This commit is contained in:
Omar Najjar 2024-07-07 15:34:03 +10:00
parent 046cbb7d0d
commit 9b7d4ba162

View file

@ -519,7 +519,7 @@
}
async function fetchTotalBets() {
const response = await fetch(`https://instinct-api.yazdani.dev/totals?event=8`, { method: 'GET' });
const response = await fetch(`https://instinct-api.yazdani.dev/totals?event=95`, { method: 'GET' });
if (response.ok) {
const totals = await response.json();
const totalBetsLion = totals.bets.find(bet => bet.team === 0)?.total || 0;