Maple Leafs’ Stolarz doubtful to travel to Florida for Game 3, says coach
As the Toronto Maple Leafs’ second-round series shifts to Florida, it appears one player will be staying behind.

As the Toronto Maple Leafs‘ second-round series shifts to Florida, it appears one player will be staying behind.
Goalie Anthony Stolarz is doubtful to make the trip to Fort Lauderdale, head coach Craig Berube told reporters on Thursday.
Stolarz was injured in Game 1 after taking a Sam Bennett forearm to the head. He left the game in the middle of the second period after seemingly vomiting at the bench during a break in action.
Joseph Woll replaced him in Game 1 and as a starter in Game 2, where he earned the win by stopping 25 of 28 shots against in the Maple Leafs’ 4-3 victory.
Veteran Matt Murray served as his backup.
Toronto leads the series 2-0. Game 3 is set for Friday at 7 p.m. ET / 4 p.m. PT, with live coverage available on Sportsnet and Sportsnet+.
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_f24a8f1489c333357dff1546f2ecbef8', 'NHL', '5eeea141-92ad-46bc-8537-5b01bff671b2');