1export function isNetworkError(e: unknown) { 2 const str = String(e) 3 return str.includes('Aborted') || str.includes('Network request failed') 4}