Skip to content

Commit 75e4892

Browse files
authored
fix(locale): fix en_HK city_pattern (#2105)
1 parent 789c8a2 commit 75e4892

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed
File renamed without changes.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export default ['{{location.city_name}}'];

src/locales/en_HK/location/index.ts

+4-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@
44
*/
55
import type { LocationDefinitions } from '../../..';
66
import building_number from './building_number';
7-
import city from './city';
7+
import city_name from './city_name';
8+
import city_pattern from './city_pattern';
89
import default_country from './default_country';
910
import postcode from './postcode';
1011
import postcode_by_state from './postcode_by_state';
@@ -18,7 +19,8 @@ import street_suffix from './street_suffix';
1819

1920
const location: LocationDefinitions = {
2021
building_number,
21-
city,
22+
city_name,
23+
city_pattern,
2224
default_country,
2325
postcode,
2426
postcode_by_state,

0 commit comments

Comments
 (0)