Blue Jays reliever Brendon Little avoids serious injury, available vs. Orioles
Lefty Brendon Little, who left Friday’s game with a left lat cramp after just 11 pitches, did not need imaging and could pitch Saturday if needed, Jays according to manager John Schneider.

The Toronto Blue Jays got good news regarding one of their relievers.
Lefty Brendon Little, who left Friday’s game with a left lat cramp after just 11 pitches, did not need imaging and could pitch Saturday if needed, Jays manager John Schneider said, according to Sportsnet’s Ben Nicholson-Smith.
The 28-year-old is one of only two southpaws in Toronto’s bullpen alongside Richard Lovelady.
Little tossed a 3.74 ERA while striking out 36 batters in 45.2 innings during the 2024 season for the Blue Jays.
Toronto hosts Baltimore in the third game of the series, with first pitch at 3:07 p.m. ET 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_5bba9e72b183626b5d9a1a8e182026b1', 'MLB', '9a4d9269-48aa-4523-9612-056b8461395b');