diff --git a/frontend/components/PlatformCompatibility/PlatformCompatibility.tsx b/frontend/components/PlatformCompatibility/PlatformCompatibility.tsx index 25cbe7f4ea..45969c8fb0 100644 --- a/frontend/components/PlatformCompatibility/PlatformCompatibility.tsx +++ b/frontend/components/PlatformCompatibility/PlatformCompatibility.tsx @@ -48,28 +48,11 @@ const displayIncompatibilityText = (err: Error) => { } }; -// const tipContent = ( -// <> -// Estimated compatibility based on the
-// tables used in the query. Querying
-// iPhones, iPads, and Android hosts is not
-// supported. -// -// ); - -// TODO(android): replace with the above tipContent when Android feature flag is removed const tipContent = ( <> - Estimated compatibility based on the
- tables used in the query. Check the
- table documentation (schema) to verify
- compatibility of individual columns. -
-
- Only live queries are supported on ChromeOS. -
-
- Querying iPhones & iPads is not supported. + Estimated compatibility based on the tables
+ used in the query. Querying iPhones, iPads,
+ and Android hosts is not supported. ); @@ -90,6 +73,15 @@ const PlatformCompatibility = ({ return DISPLAY_ORDER.map((platform) => { const isCompatible = displayPlatforms.includes(platform); + + const liveQueryOnlyPlatform = ( + + {platform} + + ); + return ( - {platform} + {platform === "ChromeOS" ? liveQueryOnlyPlatform : platform} ); }); @@ -109,7 +101,7 @@ const PlatformCompatibility = ({ return (
- + Compatible with: