From f6fc5bc4a61bcb1c3ab5d8ca7a9ab13a5340a149 Mon Sep 17 00:00:00 2001 From: Samuel Newman Date: Wed, 10 Dec 2025 19:29:57 +0200 Subject: [PATCH] woke is back --- src/components/contacts/country-whitelist.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/contacts/country-whitelist.ts b/src/components/contacts/country-whitelist.ts index 41d6650cd6..6609d03ce8 100644 --- a/src/components/contacts/country-whitelist.ts +++ b/src/components/contacts/country-whitelist.ts @@ -2,7 +2,7 @@ import {type CountryCode} from '#/lib/international-telephone-codes' import {IS_DEV} from '#/env' import {useGeolocation} from '#/geolocation' -const FIND_CONTACTS_FEATURE_COUNTRY_WHITELIST = [ +const FIND_CONTACTS_FEATURE_COUNTRY_ALLOWLIST = [ 'US', 'GB', 'JP', @@ -19,7 +19,7 @@ const FIND_CONTACTS_FEATURE_COUNTRY_WHITELIST = [ ] satisfies CountryCode[] as string[] export function isFindContactsFeatureEnabled(countryCode: string): boolean { - return FIND_CONTACTS_FEATURE_COUNTRY_WHITELIST.includes( + return FIND_CONTACTS_FEATURE_COUNTRY_ALLOWLIST.includes( countryCode.toUpperCase(), ) }