Wild activate Kaprizov, Eriksson Ek ahead of game against Sharks
The Minnesota Wild activated star Kirill Kaprizov and forward Joel Eriksson Ek from injured reserve, paving the way for their return on Wednesday against the San Jose Sharks.

The Western Conference playoff race is about to get kicked up a notch.
The Minnesota Wild activated star Kirill Kaprizov and forward Joel Eriksson Ek from injured reserve, paving the way for their return on Wednesday against the San Jose Sharks.
Earlier, head coach John Hynes said he was “hopeful” both players would be able to return to the lineup, but they needed to go through one more skate and get one last clearance.
Minnesota sits in the second wild-card spot in the Western Conference with 91 points in 78 games and holds a four-point lead over the Calgary Flames.
“We got seven days, we got four games, we got 12 periods. It’s time to make sure that everything is about winning,” Hynes said.
-
-
Watch the Stanley Cup Playoffs on Sportsnet
The NHL’s best are ready to battle for the right to hoist the Stanley Cup. Watch every game of the Stanley Cup Playoffs on Sportsnet and Sportsnet+ beginning on April 17.
Kaprizov, 27, missed the past 28 games after undergoing surgery for a lower-body injury, interrupting a season that appeared to make him an early MVP candidate.
In 37 games, the Russian had compiled a team-high 23 goals and 29 points.
Eriksson Ek, who has not played since the 4 Nations Face-Off, compiled nine goals and 15 assists in 42 games before he was sidelined.
The Wild snapped a four-game losing streak with a win over the Dallas Stars on Sunday.
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_ec6fd2ee0b46a044592c9b4e8a4aa9a2', 'NHL', '197db995-508b-43cb-bbdf-4c7c06c636c3');