From 44fa740ca3731564922ca5d09aec4268fd25dbc1 Mon Sep 17 00:00:00 2001 From: Constantin Simonis Date: Tue, 28 Jan 2025 09:43:27 +0100 Subject: [PATCH] refactor --- src/app/hotel/component/hotel.component.ts | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/app/hotel/component/hotel.component.ts b/src/app/hotel/component/hotel.component.ts index a578834..f8dc69a 100644 --- a/src/app/hotel/component/hotel.component.ts +++ b/src/app/hotel/component/hotel.component.ts @@ -1,7 +1,6 @@ import {Component, inject, OnInit} from "@angular/core"; import {Hotel} from "../model/hotel" import {CurrencyPipe, NgOptimizedImage} from "@angular/common"; -import {Lang} from "../../currency/lang"; import {StarComponent} from "./star.component"; import {ActivatedRoute} from "@angular/router"; import {HotelService} from "../service/hotel.service"; @@ -35,8 +34,6 @@ import {DeleteHotelComponent} from "./delete-hotel.component"; ` }) export class HotelComponent implements OnInit { - protected currency: Lang = {name: 'de', code: 'de-DE', currency: 'EUR'} - protected hotel!: Hotel; protected alert: string|undefined