Thunder’s Shai Gilgeous-Alexander ruled out with elbow injury vs. Jazz
The Oklahoma City Thunder will be without the reigning MVP as they aim to continue their record pace.
Shai Gilgeous-Alexander has been ruled out for Oklahoma City’s game against the Utah Jazz on Sunday with left elbow bursitis.
The Thunder will also be without a slew of important role players, including Luguentz Dort (right adductor strain), Alex Caruso (right quad contusion), Isaiah Hartenstein (right soleus strain) and Isaiah Joe (left knee soreness).
Gilgeous-Alexander, 27, is yet to miss a game this season and is averaging more points (32.8) in less minutes (33.3) than he did during his 2024-25 MVP season.
The Toronto-born guard is also shooting career-best percentages from the field (55.6 percent) and from three-point range (44.3 percent).
Oklahoma City’s other all-star last season, Jalen Williams, has played only four games after returning from off-season wrist surgery on Nov. 28. Still, the team has excelled despite injuries, winning its last 15 games for an NBA-best 22-1 record.
They’ll look to remain dominant, even without their leader, against the Jazz on Sunday. Watch the game on Sportsnet ONE and Sportsnet+ at 8 p.m. ET / 5 p.m. PT.
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_e7055a9afcd5d72024d7ce09488ea9c6', 'NBA', '89e144b3-c5e9-466d-abb4-cd441bd48e95');
What's Your Reaction?
Like
0
Dislike
0
Love
0
Funny
0
Angry
0
Sad
0
Wow
0