Jets’ Josh Morrissey expected to return for Game 2 against Stars
The Winnipeg Jets will get a key blue-liner back ahead of their pivotal Game 2 matchup with the Dallas Stars.

The Winnipeg Jets likely will get a key blue-liner back for their pivotal Game 2 matchup with the Dallas Stars.
When asked if Morrissey will return Friday night, coach Scott Arniel said “probably.”
Morrissey missed Game 1 of the series with an upper body injury.
Morrissey exited Game 7 against the St. Louis Blues in the first period following a hit into the boards from Oskar Sundqvist.
The 30-year-old 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, Morrissey recorded 14 goals and 48 assists.
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_24e3a85adbe1426e061fc64e728225f9', 'NHL', '4b446c7b-aac7-4c59-acf4-8dbccad6f7ab');