Jets’ Mark Scheifele out for Game 7 vs. Blues, coach says
The Winnipeg Jets will be without star centre Mark Scheifele as they try to hold off the St. Louis Blues in Game 7 on Sunday.

The Winnipeg Jets will be without Mark Scheifele as they try to hold off the St. Louis Blues in Game 7 Sunday.
Jets coach Scott Arniel told reporters that the star centre will not play in the decisive contest.
“He’s not in tonight,” Arniel said, according to Ken Wiebe of the Winnipeg Free Press.
Scheifele missed Winnipeg’s Game 6 loss and did not travel with the team to St. Louis.
The 32-year-old exited Game 5 after absorbing two heavy hits — one from Blues captain Brayden Schenn and another from forward Radek Faksa in the first period.
Scheifele has six points (two goals and four assists) through five playoff games and finished second in team scoring during the regular season with a career-high 87 points, helping lead Winnipeg to the Presidents’ Trophy.
You can watch as the Jets look to defend home ice and punch their ticket to the second round against the Blues on Sportsnet or Sportsnet+. Puck drop is scheduled for 7 p.m. ET / 6 p.m. CT.
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_bf618074f1dc42caedf9717b25f6396c', 'NHL', '911dbfb6-51fe-422c-9700-18f90363e065');