Canucks’ Quinn Hughes returns to lineup vs. Flames
After missing the last four games, the Vancouver Canucks’ captain might make a return.

The Vancouver Canucks are getting their most important player back for their most important game of the season so far.
Captain Quinn Hughes is back in the lineup after missing four games with an undisclosed injury.
“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,” head coach Rick Tocchet said before Hughes took warmups and was confirmed to be in the lineup.
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_c64d8dfc04227aa5681e7274c76dfd2a', '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.
Defenceman Tyler Myers and forward Jonathan Lekkerimaki were not in the lineup for the Canucks. Nils Aman replaced Lekkerimaki in the lineup.