{ "version": 3, "sources": ["../../assets/scripts/store/features/search/SearchForm/SearchResults.tsx", "../../assets/scripts/store/hooks/useDebounce.ts", "../../assets/scripts/store/features/search/SearchForm/index.tsx"], "sourcesContent": ["import fetcher from '@app/utils/fetcher';\r\nimport Loader from '@store/components/Loader';\r\nimport type { FC} from 'react';\r\nimport React, { createRef, useEffect, useState } from 'react';\r\nimport { useTranslation } from 'react-i18next';\r\nimport useSWR from 'swr';\r\n\r\nimport type { ISearchResult, ISearchResultItem } from './types';\r\n\r\ninterface IProps {\r\n apiUrl: string;\r\n searchTerm: string;\r\n searchLink: string;\r\n}\r\n\r\nconst ItemsGroup: FC<{ items: ISearchResultItem[]; title: string }> = ({ items, title }) => {\r\n if (!items || items.length === 0) return <>>;\r\n\r\n return (\r\n