From 3ffbb03f64cd8a7bddb28a2252417aadbed0032b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=A9rard=20Collin?= Date: Sat, 15 Aug 2026 15:14:19 +0200 Subject: [PATCH] fix: country import --- .../projects/intl/src/lib/country/country-type-handler.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/plugins/xt-intl/projects/intl/src/lib/country/country-type-handler.ts b/plugins/xt-intl/projects/intl/src/lib/country/country-type-handler.ts index 46ea3d4..847b14a 100644 --- a/plugins/xt-intl/projects/intl/src/lib/country/country-type-handler.ts +++ b/plugins/xt-intl/projects/intl/src/lib/country/country-type-handler.ts @@ -1,5 +1,6 @@ import { AbstractTypeHandler } from 'xt-type'; -import { getByAlpha3 } from 'countries-ts'; +import countriests from 'countries-ts'; +const { getByAlpha3 } = countriests; /** * Handles the country type, an ISO 3166-1 alpha-3 country code (e.g. 'FRA').