After missing the last four games, the Vancouver Canucks‘ captain might make a return.
Canucks head coach Rick Tocchet addressed reporters about Quinn Hughes’ return from injury ahead of Wednesday night’s game.
“Theres a good possibility, I saw him this morning. He looks good so there’s a good possibility he’ll be in the lineup tonight,” Tocchet said.
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_ba8237647ff0089331c944a559d773ac', 'NHL', '11216b37-4bae-4a4a-9c11-be0e3e438909');
The 25-year-old captain has been listed as day-to-day with an undisclosed injury since getting injured in the Canucks’ 6-3 loss to the Seattle Kraken on March 1.
Hughes was also forced to miss the 4 Nations Face-Off and six games back in February as a result of an injury.
The reigning Norris Trophy leads the Canucks in scoring with 14 goals and 46 assists in 50 games this season.