NHL calls Jets, Blues after pre-game incident
The NHL warned the Winnipeg Jets and St. Louis Blues following an incident involving Mark Scheifele and Joel Hofer during warmups ahead of Thursday’s Game 3, Sportsnet confirmed.

As first-round series continue, tension appears to be rising.
The NHL gave calls to the Winnipeg Jets and St. Louis Blues following an incident involving Mark Scheifele and Joel Hofer during warmups ahead of Thursday’s Game 3, Sportsnet can confirm.
Scheifele and Hofer, the last two players on the ice, were involved in a standoff before Hofer, a Winnipeg native, finally went to the dressing room ahead of the Jets captain, reported Ken Wiebe of the Winnipeg Free Press.
The crowd in St. Louis booed following the incident, Wiebe added.
The Blues went on to win the game 7-2, cutting their series deficit to 2-1.
It wasn’t the only pre-game incident the league had to deal with from Thursday’s games. The league also is investigating Ottawa’s Nick Cousins for shooting a puck at Toronto goalie Anthony Stolarz.
Winnipeg and St. Louis meet for Game 4 on Sunday at 1 p.m. ET / 12 p.m. CT 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_52ada0f97728431a54c89dbebfc1a407', 'NHL', 'b7b5ccbd-44ef-4db7-a750-418461fc2db9');