The Toronto Maple Leafs are down a defenceman on Sunday.
Oliver Ekman-Larsson won’t play against the Minnesota Wild (Sportsnet, Sportsnet+, 7:30 p.m. ET / 4:30 p.m. PT) due to the birth of his child, the team announced.
Ekman-Larsson, 34, has enjoyed a resurgent season with the Maple Leafs, notching eight goals and 27 assists in 65 games.
However, he is riding a six-game point drought and has not scored since Jan. 17.
In a corresponding move, the Maple Leafs recalled fellow blue-liner Henry Thrun on an emergency basis.
Thrun, 25, is without a point in four games with the team this season.
After taking on the Wild, the Maple Leafs return to the ice Tuesday when they host the New York Islanders.
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_88aa5c35808d26e7c7d164ae953247b8', 'NHL', 'f76ca3b8-462a-4bbb-8048-1307fc0c3da0');


Bengali (Bangladesh) ·
English (United States) ·