From 02a95b31e8a61dd0f47cb82bb07c7b6c5e576b0b Mon Sep 17 00:00:00 2001 From: yashrastogi <4853337+yashrastogi@users.noreply.github.com> Date: Mon, 27 Apr 2026 16:25:26 +0000 Subject: [PATCH] chore: remove unused imports in search-bar component Removed unused 'Signal' model import and 'of' from rxjs imports in search-bar.ts to improve code maintainability and readability. --- src/app/components/search-bar/search-bar.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/app/components/search-bar/search-bar.ts b/src/app/components/search-bar/search-bar.ts index 26153ef..97ac3fa 100644 --- a/src/app/components/search-bar/search-bar.ts +++ b/src/app/components/search-bar/search-bar.ts @@ -2,9 +2,8 @@ import { Component, OnInit, OnDestroy, ElementRef, ViewChild, HostListener, Chan import { CommonModule } from '@angular/common'; import { FormsModule } from '@angular/forms'; import { Router, RouterModule } from '@angular/router'; -import { Subject, Subscription, of } from 'rxjs'; +import { Subject, Subscription } from 'rxjs'; import { Decision } from '../../models/decision.model'; -import { Signal } from '../../models/signal.model'; import { debounceTime, distinctUntilChanged, switchMap } from 'rxjs/operators'; import { SearchService, SearchResult } from '../../services/search.service';