Skip to content

Commit

Permalink
re commit
Browse files Browse the repository at this point in the history
  • Loading branch information
bacpactech committed Sep 25, 2024
1 parent db0a1e4 commit 2f81e4e
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/services/universitySearch.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,6 @@ interface UniversitySearchResult {
export function useUniversitySearch(searchTerm: string): UniversitySearchResult {
// Debounce the search term with a 1-second delay
const debouncedSearchTerm = useDebounce(searchTerm, 1000)
// console.log(searchTerm)

// console.log(debouncedSearchTerm)

const { isLoading, data } = useQuery({
enabled: Boolean(debouncedSearchTerm),
Expand Down

0 comments on commit 2f81e4e

Please sign in to comment.