diff --git a/ui/components/app/auto-detect-token/auto-detect-token-modal.tsx b/ui/components/app/auto-detect-token/auto-detect-token-modal.tsx index 27ea2bfcaf70..cf03216ec3ca 100644 --- a/ui/components/app/auto-detect-token/auto-detect-token-modal.tsx +++ b/ui/components/app/auto-detect-token/auto-detect-token-modal.tsx @@ -45,6 +45,7 @@ function AutoDetectTokenModal({ const dispatch = useDispatch(); const trackEvent = useContext(MetaMetricsContext); const { chainId } = useSelector(getProviderConfig); + const locale = useSelector(getCurrentLocale); const handleTokenAutoDetection = useCallback( (val) => { @@ -55,7 +56,7 @@ function AutoDetectTokenModal({ category: MetaMetricsEventCategory.Navigation, properties: { chain_id: chainId, - locale: getCurrentLocale, + locale, referrer: ORIGIN_METAMASK, }, });