diff --git a/projects/demo/src/modules/components/input-phone-international/examples/import/import.md b/projects/demo/src/modules/components/input-phone-international/examples/import/import.md index 33cb40a6fb7b..d509adf5d824 100644 --- a/projects/demo/src/modules/components/input-phone-international/examples/import/import.md +++ b/projects/demo/src/modules/components/input-phone-international/examples/import/import.md @@ -1,5 +1,6 @@ ```ts import {ReactiveFormsModule} from '@angular/forms'; +import type {TuiCountryIsoCode} from '@taiga-ui/i18n'; import {TuiInputPhoneInternational} from '@taiga-ui/kit'; @Component({ @@ -12,11 +13,6 @@ export class Example { testValue: new FormControl('+78005553535'), }); - readonly countries: ReadonlyArray = [ - TuiCountryIsoCode.RU, - TuiCountryIsoCode.KZ, - TuiCountryIsoCode.UA, - TuiCountryIsoCode.BY, - ]; + readonly countries: ReadonlyArray = ['RU', 'KZ', 'UA', 'BY']; } ```