Oilers’ Knoblauch gives updates on Brown, McDavid ahead of Stanley Cup Final
Edmonton Oilers head coach, Chris Knolblauch, gives updates on Connor Brown and Connor McDavid ahead of game one of the Stanley Cup Final.

No need to panic, Edmonton Oilers fans.
Oilers coach Kris Knoblauch had good news on Connor McDavid and Connor Brown when speaking to the media at practice Monday.
McDavid will be a full participant in Tuesday’s practice on the eve of Game 1 of the Stanley Cup Final after leaving Sunday’s skate early, Knoblauch said.
Meanwhile, Brown is confirmed to play in Game 1 against the Florida Panthers after missing the final two games of the Western Conference Final with an undisclosed injury.
Watch the Oilers-Panthers series opener Wednesday at 8 p.m. ET / 6 p.m. MT 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_833406a7ec9acbbc415dcc0867266e9f', 'NHL', 'ca1fadb5-22cb-4a8d-b5e5-3154740b8c9e');