From cb3d5bbf043bf97b7662cd6e22f2da2796e002e0 Mon Sep 17 00:00:00 2001 From: "sentry[bot]" <39604003+sentry[bot]@users.noreply.github.com> Date: Fri, 17 Jul 2026 11:09:28 +0000 Subject: [PATCH] fix(platformSelector): Address TypeError from replaceAll in old WebViews --- src/components/platformSelector/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/platformSelector/index.tsx b/src/components/platformSelector/index.tsx index dc20a84b57a4f..e151f71d04c31 100644 --- a/src/components/platformSelector/index.tsx +++ b/src/components/platformSelector/index.tsx @@ -36,7 +36,7 @@ export function PlatformSelector({ }) { // humanize the title for a more natural sorting const humanizeTitle = (title: string) => - title.replaceAll('.', ' ').replaceAll(/ +/g, ' ').trim(); + title.replace(/\./g, ' ').replace(/ +/g, ' ').trim(); const platformsAndGuides = useMemo( () => platforms