Senators’ Brady Tkachuk set to miss fifth straight game
Brady Tkachuk was not included in the team’s projected lineup for Tuesday’s matchup with the Columbus Blue Jackets.

The Ottawa Senators will be without their captain for the fifth straight game.
Brady Tkachuk was not included in the team’s projected lineup for Tuesday’s matchup with the Columbus Blue Jackets.
The 25-year-old was deemed doubtful by head coach Travis Green on Sunday after Ottawa’s 3-0 win over the Florida Panthers.
Tkachuk last played on March 30 against the Pittsburgh Penguins and has been out with an upper-body injury since. It is not known exactly how he sustained the injury.
Tkachuk also missed a pair of games with a lower-body injury coming out of the 4 Nations Face-Off in February.
The left winger leads the Senators with 29 goals this season, adding 26 assists in 71 games.
Ottawa is sitting comfortably in the first Eastern Conference wild-card spot with a 42-29-6 record, five points ahead of the Montreal Canadiens, who hold the second wild-card spot.
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_00b407ff25cc8391a4e18624a4f3e5b8', 'NHL', '47a299e8-6ecd-4cc8-80e4-010c40c59ce8');