From 43cc6e96ec645124e2608734b2c946a12187ef11 Mon Sep 17 00:00:00 2001 From: Jan Klattenhoff Date: Tue, 1 Oct 2024 07:55:31 +0200 Subject: [PATCH] style(hotel): fix string casing in Hotel interface --- src/app/HotelItem/hotel.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/app/HotelItem/hotel.ts b/src/app/HotelItem/hotel.ts index f098c6f..a009af8 100644 --- a/src/app/HotelItem/hotel.ts +++ b/src/app/HotelItem/hotel.ts @@ -1,8 +1,8 @@ export interface Hotel { hotelId: number; - hotelName: String; - description: String; + hotelName: string; + description: string; price: number; - imageUrl: String; + imageUrl: string; rating: number; }