Senators’ Linus Ullmark to return vs. Lightning
Linus Ullmark will make his first start for the Senators since Dec. 22 on Tuesday night in Tampa Bay against the Lightning.
The Ottawa Senators finally have their No. 1 goalie back.
Linus Ullmark will make his first start since Dec. 22 on Tuesday night in Tampa Bay against the Lightning.
Ullmark left a Dec. 22 against the Edmonton Oilers with upper-body tightness during the third period. He has been listed as week-to-week ever since.
Anton Forsberg started Monday in a win over Nashville.
The Senators sent goalie Leevi Merilainen back down to the Bellville Senators of the American Hockey League on Sunday.
Ottawa has thrived despite the absence of Ullmark. The Senators carry a five-game win streak into Tuesday’s game.
Ullmark is 12-7-2 with a 2.38 goals-against average and .915 save percentage this 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_c99882a984ecd6784595ea5b266e2849', 'NHL', '7d6f8080-45a2-4e23-9fc5-1b4213a10e0e');