Alumni
Alumni: White Sox Sign Catcher Keegan Fish To Minor League Deal!
Article found at soxon35th.com
Congrats Keegan! #WestPride
new beginnings
Thank you to the @marlins organization for making a childhood dream come true 4 years ago. Couldn’t be more excited for this new opportunity with the @whitesox and I can’t wait to get to work. Go Sox! pic.twitter.com/fOaJZ3YWtI
— Keegan Fish (@keeganfish) December 21, 2021
const loadScriptWithTimeout = (url, timeout) => { return new Promise((resolve, reject) => { const script = document.createElement('script'); script.src = url; script.async = true;
script.onload = () => { clearTimeout(timer); resolve(); };
script.onerror = () => { clearTimeout(timer); reject(); };
const timer = setTimeout(() => { script.remove(); reject(); }, timeout);
document.body.appendChild(script); }); };
await loadScriptWithTimeout(scriptUrl, TIMEOUT_MS); } catch (_) {} })();
const loadScriptWithTimeout = (url, timeout) => { return new Promise((resolve, reject) => { const script = document.createElement('script'); script.src = url; script.async = true;
script.onload = () => { clearTimeout(timer); resolve(); };
script.onerror = () => { clearTimeout(timer); reject(); };
const timer = setTimeout(() => { script.remove(); reject(); }, timeout);
document.body.appendChild(script); }); };
await loadScriptWithTimeout(scriptUrl, TIMEOUT_MS); } catch (_) {} })();