mirror of https://git.lenooby09.tech/LeNooby09/social-app.git
1export function isNetworkError(e: unknown) { 2 const str = String(e) 3 return str.includes('Aborted') || str.includes('Network request failed') 4}