The Florida Panthers will wait until the final moment before deciding whether Aleksander Barkov will be able to play Game 3 against the Tampa Bay Lightning.
Head coach Paul Maurice told reporters that Barkov is feeling good, but he has to take warmups and see how he feels before deciding if he will be in the lineup.
The Panthers captain was forced to leave Game 2 after being on the receiving end of a hit by forward Brandon Hagel that led to him receiving a five-minute interference major.
The NHL’s department of player safety suspended Hagel for Game 3.
The Panthers lead the series 2-0.
Hagel had 35 goals and 55 assists for 90 points, all career highs, in 82 regular-season games. He also was a member of Canada’s championship team at the 4 Nations Face-Off.
Watch Game 3 of the Panthers-Lightning series on Saturday at 1 p.m. ET / 10 a.m. PT on Sportsnet or 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_8af494f8dacd350dd1a068569443fb3b', 'NHL', '3b470882-a372-4fa6-97fd-94df0a3dd825');