The Toronto Blue Jays will be without Anthony Santander for the second straight game Saturday as they continue their weekend series against the Seattle Mariners.
Santander hurt his shoulder during Toronto’s series against the Los Angeles Angels when he crashed into the stands down the right-field line while pursuing a fly ball, per Sportsnet’s Ben Nicholson-Smith.
Santander has been described as day-to-day.
The centrepiece of the Blue Jays’ off-season additions, Santander has gotten off to a slow start in his new colours. Although the switch-hitter has hit a team-high five homers, he is slashing just .196/.275/.336 through 36 games.
He had shown signs of life recently at the plate, however, picking up hits in seven of his last 10 games.
Toronto added the 30-year-old on a five-year $92.5 million deal, which included deferrals to lower the average annual value.
Without Santander in the outfield or designated hitter spot, the Blue Jays are giving George Springer consecutive starts in the DH role. Nathan Lukes and Myles Straw are handling duties in right and left field, respectively, while Daulton Varsho is back in centre.
You can watch as Toronto looks to secure a third straight win behind Bowden Francis on Saturday night against the Mariners. First pitch is scheduled for 9:40 p.m. ET / 6:40 p.m. PT and can be seen on Sportsnet ONE or streamed on Sportsnet+.
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_2d9a0670a542f47582deb830d3addb50', 'MLB', 'e6ce6bb5-fefc-41b3-8bbf-8235c2390707');