Reinforcements could be on the way for the Dallas Stars as they prepare to face the Presidents’ Trophy-winning Winnipeg Jets.
Forward Jason Robertson, who’s been out of the lineup since April 16 with a knee injury, is a game-time decision for Game 1, Stars head coach Peter DeBoer told reporters after morning skate on Wednesday, according to Ken Wiebe of the Winnipeg Free Press.
The 25-year-old forward was on the ice for the team’s optional skate.
DeBoer added that defenceman Miro Heiskanen, who last played on Jan. 28, is out for Game 1.
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_bdad247c3b3d3b7755d3b1023309688a', 'NHL', '33f5ebbe-b6be-4c36-a589-0de2068db979');
Robertson skated alongside Wyatt Johnston and Mason Marchment at practice Tuesday. He finished second on Dallas with 80 points this season and had a team-high 35 goals.
The Jets host the Stars for Game 1 of their second-round playoff series Wednesday at 9:30 p.m. ET / 8:30 p.m. CT.
Watch the game live on Sportsnet and Sportsnet +.