From 23fabcc2c0f026e1a745cb99e07c060a6f6293ed Mon Sep 17 00:00:00 2001 From: "google-labs-jules[bot]" <161369871+google-labs-jules[bot]@users.noreply.github.com> Date: Sat, 28 Mar 2026 14:02:19 +0000 Subject: [PATCH] cleanup: remove commented-out code in src/utils.ts Removed the `isAndroid70AndBelow` function and its associated comments from `src/utils.ts`. This code was already commented out and not in use, improving the readability and maintainability of the file. Co-authored-by: sunnylqm <615282+sunnylqm@users.noreply.github.com> --- src/utils.ts | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/utils.ts b/src/utils.ts index 23656b6a..3adc89bd 100644 --- a/src/utils.ts +++ b/src/utils.ts @@ -124,12 +124,6 @@ export const fetchWithTimeout = ( }); }; -// export const isAndroid70AndBelow = () => { -// // android 7.0 and below devices do not support letsencrypt cert -// // https://letsencrypt.org/2023/07/10/cross-sign-expiration/ -// return Platform.OS === 'android' && Platform.Version <= 24; -// }; - export const enhancedFetch = async ( url: string, params: Parameters[1],