Lightning place goaltender Andrei Vasilevskiy on injured reserve
The Tampa Bay Lightning will look to maintain their lead atop the Atlantic Division without their star goaltender.
Andrei Vasilevskiy was placed on injured reserve Tuesday with an undisclosed injury. The 31-year-old last played on Dec. 2, must now miss at least two more games.
In 19 games this season, Vasilevskiy is 11-6-2 with a 2.31 goals-against average and a .917 save percentage.
Tampa Bay has lost both games that Vasilevskiy has missed.
The Lightning are back in action Monday against the Toronto Maple Leafs, who sit four points behind them in the Atlantic Division.
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_da547e979da86deabe7f6099a85f3d56', 'NHL', '5112ad05-6099-4f06-8ad3-12fe4e37ed16');
What's Your Reaction?
Like
0
Dislike
0
Love
0
Funny
0
Angry
0
Sad
0
Wow
0