// PBI-11 / ST-1135: detecteert telefoon-UA's voor login-redirect. // Heuristiek: 'Mobi' in de UA-string. Zit in Android Chrome en iPhone Safari // Mobile, NIET in iPad of Android-tablet — exact wat we willen voor de // `/m/*`-mobile-shell (alleen telefoons, geen tablets). export function isPhoneUA(ua: string | null): boolean { return ua !== null && ua.includes('Mobi') }