diff --git a/src/app/header/header.component.html b/src/app/header/header.component.html
index 0a90ae9..c10ae21 100644
--- a/src/app/header/header.component.html
+++ b/src/app/header/header.component.html
@@ -6,15 +6,15 @@
diff --git a/src/app/header/header.component.ts b/src/app/header/header.component.ts
index 81f68ee..1d236bb 100644
--- a/src/app/header/header.component.ts
+++ b/src/app/header/header.component.ts
@@ -1,13 +1,8 @@
-import { Component, EventEmitter, Output } from "@angular/core";
+import { Component } from "@angular/core";
@Component({
selector: 'app-header',
templateUrl: './header.component.html'
})
export class HeaderComponent {
- @Output() featureSelected = new EventEmitter
();
-
- onSelect(feature: string) {
- this.featureSelected.emit(feature);
- }
}
\ No newline at end of file
diff --git a/src/app/recipes/recipe-detail/recipe-detail.component.html b/src/app/recipes/recipe-detail/recipe-detail.component.html
index 6ab91bb..3210f82 100644
--- a/src/app/recipes/recipe-detail/recipe-detail.component.html
+++ b/src/app/recipes/recipe-detail/recipe-detail.component.html
@@ -18,8 +18,8 @@
diff --git a/src/app/recipes/recipe-list/recipe-item/recipe-item.component.html b/src/app/recipes/recipe-list/recipe-item/recipe-item.component.html
index d73c650..551163a 100644
--- a/src/app/recipes/recipe-list/recipe-item/recipe-item.component.html
+++ b/src/app/recipes/recipe-list/recipe-item/recipe-item.component.html
@@ -1,5 +1,5 @@