Jakob Poetl returns as Raptors aim to rebound vs. Hornets
The Toronto Raptors look to bounce back from a buzzer-beater loss to the Los Angeles Lakers on Thursday, and they’ll have some added help to do so.
Jakob Poetl will make his return to the lineup when the Raptors take on the Charlotte Hornets on Friday after being rested for the matchup against the Lakers, the team have announced.
The 30-year-old has averaged 12.3 points, 9.2 rebounds, 2.9 assists and 1.0 steals over his last 10 appearances this season.
Toronto will still be without forward RJ Barrett (knee) and guard Ochai Agbaji (personal), who remain on the Raptors’ Injury Report heading into their game against Charlotte at the Scotiabank Arena.
if (!res.ok) { throw new Error('Failed to fetch odds data'); }
const data = await res.json(); const oddsData = data?.data?.game?.details?.current_line; const visitingTeam = data?.data?.game?.visiting_team; const visitingTeamLogo = data?.data?.game?.visiting_team?.image_url_90; const homeTeam = data?.data?.game?.home_team; const homeTeamLogo = data?.data?.game?.home_team?.image_url_90; const gameTimestamp = data?.data?.game?.details?.timestamp;
return { oddsData, visitingTeam, visitingTeamLogo, homeTeam, homeTeamLogo, gameTimestamp }; }
async function renderBetMGM(componentId, league, gameId) { let oddsData, visitingTeam, visitingTeamLogo, homeTeam, homeTeamLogo, gameTimestamp, error;
const container = document.getElementById(componentId + '-odds'); if (!container) return;
try { ({ oddsData, visitingTeam, visitingTeamLogo, homeTeam, homeTeamLogo, gameTimestamp } = await fetchOddsData(league, gameId)); } catch (err) { error = err.message; }
if (error) { container.innerHTML = `
`; return; }
if (!oddsData) { container.innerHTML = `
`; return; }
let gameDate = new Date(gameTimestamp * 1000); const gameDateFormatted = gameDate.toLocaleDateString('en-US', { year: 'numeric', month: 'long', day: 'numeric' });
container.innerHTML = `
`; }
// Example usage renderBetMGM('block_ad4ddc3f67e8472d4d5bbefe6fc3154b', 'NBA', '4ecaf4bf-fa3e-461a-8005-6e73f58b1746');
What's Your Reaction?
Like
0
Dislike
0
Love
0
Funny
0
Angry
0
Sad
0
Wow
0