diff --git a/src/platforms/apple.ts b/src/platforms/apple.ts index b36b4001..d6d078e8 100644 --- a/src/platforms/apple.ts +++ b/src/platforms/apple.ts @@ -135,8 +135,8 @@ export const formatAppleLensText = ( case '1.78': return format('Main'); case '2.8': return format('Telephoto'); } - // 16 (single lens) case '16E': + // Single lens return format('Main'); case '16': case '16 PLUS': @@ -151,6 +151,21 @@ export const formatAppleLensText = ( case '1.78': return format('Main'); case '2.8': return format('Telephoto'); } + case 'AIR': + // Single lens + return format('Main'); + case '17': + switch (aperture) { + case '2.2': return format('Wide'); + case '1.6': return format('Main'); + } + case '17 PRO': + case '17 PRO MAX': + switch (aperture) { + case '2.2': return format('Wide'); + case '1.78': return format('Main'); + case '2.8': return format('Telephoto'); + } default: return format('Back', true); }