The Toronto Maple Leafs are shuffling their lineup.
Forward Michael Pezzetta and defenceman Henry Thrun were re-assigned to the AHL’s Toronto Marlies, the team announced on Tuesday.
Pezzetta, a Toronto native, got into two games with the Maple Leafs, and tallied nine penalty minutes, including a fight.
Thrun, who skated with the team earlier in the season, did not appear in a game during his latest call-up.
The Maple Leafs look to extend their point streak to four games when they host the New York Islanders on Tuesday.
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_29e1beb32f5895fee9e757da571c95cd', 'NHL', '5e92de63-69a3-4235-9033-1e8db11e3d37');


Bengali (Bangladesh) ·
English (United States) ·