Jets’ Morrissey, Stanley remain game-time decisions for Game 2 vs. Stars
The Winnipeg Jets’ blue line could look much different in Game 2.

The Winnipeg Jets‘ blue line could look much different in Game 2.
Defencemen Josh Morrissey and Logan Stanley practised in regular contact jerseys on Thursday and are considered game-time decisions for Friday against the Dallas Stars, head coach Scott Arniel told reporters.
Morrissey exited Game 7 against the St. Louis Blues in the first period following a hit into the boards from Oskar Sundqvist.
He had three assists in the first six games of the Jets’ first-round series while averaging 23:30 of ice time. In 80 regular-season games, the 30-year-old recorded 14 goals and 48 assists.
Stanley has played in five games this post-season, recording no points, a minus-2 rating and 42 penalty minutes. He was replaced by Haydn Fleury, who played 33:02 in the double-OT Game 7 victory.
Dallas won Game 1 by a 3-2 score Wednesday on the strength of Mikko Rantanen’s second-straight hat trick.
Game 2 goes Friday at 9:30 p.m. ET / 8:30 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_cf72f1077d593aa38bf91c6dafbb1afa', 'NHL', '4b446c7b-aac7-4c59-acf4-8dbccad6f7ab');