Skip to content

Commit

Permalink
Fix hotel latitude
Browse files Browse the repository at this point in the history
  • Loading branch information
boorim98 committed Jul 8, 2020
1 parent ec87dfd commit 6ff3af8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/controllers/HotelController.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export interface HotelData {
address: string;
addressDetail: string;
zipcode: string;
latiude: number;
latitude: number;
longitude: number;
weekOpenTime: string;
weekCloseTime: string;
Expand Down
4 changes: 2 additions & 2 deletions src/services/HotelService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export class HotelService extends BaseService {
address: data.address,
addressDetail: data.addressDetail,
zipcode: data.zipcode,
latitude: data.latiude,
latitude: data.latitude,
longitude: data.longitude,
weekOpenTime: data.weekOpenTime,
weekCloseTime: data.weekCloseTime,
Expand Down Expand Up @@ -48,7 +48,7 @@ export class HotelService extends BaseService {
address: data.address,
addressDetail: data.addressDetail,
zipcode: data.zipcode,
latitude: data.latiude,
latitude: data.latitude,
longitude: data.longitude,
weekOpenTime: data.weekOpenTime,
weekCloseTime: data.weekCloseTime,
Expand Down

0 comments on commit 6ff3af8

Please sign in to comment.