Skip to content

Commit

Permalink
fix: zip_code
Browse files Browse the repository at this point in the history
  • Loading branch information
veeso committed Mar 2, 2025
1 parent 6e86c96 commit ed758f1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/js/api/mock.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export const mockRealEstate = (): RealEstate => {
country: 'Italy',
continent: 'Europe',
region: 'Lombardia',
zipCode: '20121',
zip_code: '20121',
latitude: 45.464664,
longitude: 9.18854,
zone: 'City Center',
Expand Down
2 changes: 1 addition & 1 deletion src/js/data/real_estate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export interface RealEstate {
country: string | null;
continent: string | null;
region: string | null;
zipCode: string | null;
zip_code: string | null;
latitude: number | null;
longitude: number | null;
zone: string | null;
Expand Down

0 comments on commit ed758f1

Please sign in to comment.