From 6204f4e88bd56cfc67d396472daa8ed162eb1519 Mon Sep 17 00:00:00 2001 From: Osama Sayed Date: Fri, 20 Dec 2024 16:23:06 +0800 Subject: [PATCH] Fix merge issue --- src/components/CommandBar/CommandBarBody/index.tsx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/components/CommandBar/CommandBarBody/index.tsx b/src/components/CommandBar/CommandBarBody/index.tsx index 2658427061..e9811f75da 100644 --- a/src/components/CommandBar/CommandBarBody/index.tsx +++ b/src/components/CommandBar/CommandBarBody/index.tsx @@ -19,7 +19,10 @@ import useDebounce from '@/hooks/useDebounce'; import IconSearch from '@/icons/search.svg'; import { selectInitialSearchQuery, selectRecentNavigations } from '@/redux/slices/CommandBar/state'; import { selectIsCommandBarVoiceFlowStarted } from '@/redux/slices/voiceSearch'; -import { SearchNavigationResult, SearchNavigationType } from '@/types/SearchNavigationResult'; +import { + SearchNavigationResult, + SearchNavigationType, +} from '@/types/Search/SearchNavigationResult'; import SearchQuerySource from '@/types/SearchQuerySource'; import { makeNewSearchResultsUrl } from '@/utils/apiPaths'; import { areArraysEqual } from '@/utils/array';