It’s still a bit of a waiting game when it comes to Matthew Tkachuk.
The Florida Panthers star will be a game-time decision for Tuesday’s Stanley Cup Playoffs opener against the Tampa Bay Lightning, head coach Paul Maurice told reporters.
Tkachuk hasn’t played since the 4 Nations Face-Off two months ago due to a lower-body injury.
The 27-year-old was hurt during Team USA’s second game of the tournament. He dressed for the final against Canada but did not play in the third period or overtime.
Tkachuk was placed on long-term injured reserve and missed Florida’s final 25 games of the regular season.
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_57e0e9c462c548189a4d57b988975a75', 'NHL', 'f229bc27-2c1d-49b2-babd-eb823cfa1dbf');
He finished third on the team in scoring with 57 points (22 goals and 35 assists) in 52 games.
Watch Game 1 in the Battle of Florida live on Sportsnet and Sportsnet+ starting at 8:30 p.m. ET / 5:30 p.m. PT.