Golden Knights’ Pietrangelo out for Game 1 vs. Oilers due to illness
The Vegas Golden Knights will have to try and win Game 1 against the Edmonton Oilers without their top defenceman. Alex Pietrangelo will sit out Tuesday’s series-opener due to an illness, the team announced shortly before puck drop. The veteran defenceman will be replaced in the lineup by 24-year-old Kaedan Korczak, who will make his Stanley Cup Playoffs debut in Game 1. Pietrangelo, 35, played in all six games of the Golden Knights’ series win over the Minnesota Wild in Round 1 and recorded one goal and two assists. He had four goals and 29 assists in 71 regular-season games for Vegas this season. 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 = ` Error: ${error} `; return; } if (!oddsData) { container.innerHTML = ` Odds data not available `; return; } let gameDate = new Date(gameTimestamp * 1000); const gameDateFormatted = gameDate.toLocaleDateString('en-US', { year: 'numeric', month: 'long', day: 'numeric' }); container.innerHTML = ` BetMGM Odds ${gameDateFormatted} VS Moneyline ${visitingTeam.short_name} ${oddsData.away_money > 0 ? `+${oddsData.away_money}` : oddsData.away_money} ${homeTeam.short_name} ${oddsData.home_money > 0 ? `+${oddsData.home_money}` : oddsData.home_money} Spread ${oddsData.fav_id === visitingTeam.id ? oddsData.fav_points : oddsData.fav_points > 0 ? `-${oddsData.fav_points}` : `+${Math.abs(oddsData.fav_points)}`} ${oddsData.fav_id === visitingTeam.id ? oddsData.fav_money > 0 ? `+${oddsData.fav_money}` : oddsData.fav_money : oddsData.underdog_money > 0 ? `+${oddsData.underdog_money}` : oddsData.underdog_money} ${oddsData.fav_id === homeTeam.id ? oddsData.fav_points : oddsData.fav_points > 0 ? `-${oddsData.fav_points}` : `+${Math.abs(oddsData.fav_points)}`} ${oddsData.fav_id === homeTeam.id ? oddsData.fav_money > 0 ? `+${oddsData.fav_money}` : oddsData.fav_money : oddsData.underdog_money > 0 ? `+${oddsData.underdog_money}` : oddsData.underdog_money} Over/Under O ${oddsData.total} ${oddsData.over_money > 0 ? `+${oddsData.over_money}` : oddsData.over_money} U ${oddsData.total} ${oddsData.under_money > 0 ? `+${oddsData.under_money}` : oddsData.under_money} Powered by ${gameDateFormatted} VS Powered by `; } // Example usage renderBetMGM('block_75fd49ec29d97ef9630167b64e421f1e', 'NHL', 'bee51ba8-d7ee-4166-b5ea-a794b565bfb5'); Korczak, a native of Yorkton, Sask., appeared in 40 games for the Golden Knights in 2024-25 and registered 10 assists. You can watch the Oilers and Vegas open their second-round series live on Sportsnet and Sportsnet+ starting at 9:30 p.m. ET / 7:30 p.m. MT.

The Vegas Golden Knights will have to try and win Game 1 against the Edmonton Oilers without their top defenceman.
Alex Pietrangelo will sit out Tuesday’s series-opener due to an illness, the team announced shortly before puck drop.
The veteran defenceman will be replaced in the lineup by 24-year-old Kaedan Korczak, who will make his Stanley Cup Playoffs debut in Game 1.
Pietrangelo, 35, played in all six games of the Golden Knights’ series win over the Minnesota Wild in Round 1 and recorded one goal and two assists. He had four goals and 29 assists in 71 regular-season games for Vegas this season.
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_75fd49ec29d97ef9630167b64e421f1e', 'NHL', 'bee51ba8-d7ee-4166-b5ea-a794b565bfb5');
Korczak, a native of Yorkton, Sask., appeared in 40 games for the Golden Knights in 2024-25 and registered 10 assists.
You can watch the Oilers and Vegas open their second-round series live on Sportsnet and Sportsnet+ starting at 9:30 p.m. ET / 7:30 p.m. MT.