Skip to content

Commit

Permalink
fix(locale): fix en_HK city_pattern (#2105)
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewmayer committed Apr 29, 2023
1 parent 789c8a2 commit 75e4892
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
File renamed without changes.
1 change: 1 addition & 0 deletions src/locales/en_HK/location/city_pattern.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export default ['{{location.city_name}}'];
6 changes: 4 additions & 2 deletions src/locales/en_HK/location/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
*/
import type { LocationDefinitions } from '../../..';
import building_number from './building_number';
import city from './city';
import city_name from './city_name';
import city_pattern from './city_pattern';
import default_country from './default_country';
import postcode from './postcode';
import postcode_by_state from './postcode_by_state';
Expand All @@ -18,7 +19,8 @@ import street_suffix from './street_suffix';

const location: LocationDefinitions = {
building_number,
city,
city_name,
city_pattern,
default_country,
postcode,
postcode_by_state,
Expand Down

0 comments on commit 75e4892

Please sign in to comment.