Skip to content

Commit

Permalink
fix TS import
Browse files Browse the repository at this point in the history
  • Loading branch information
Aprillion committed Sep 24, 2023
1 parent 0b902a6 commit 7eee668
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions app/components/search.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,15 @@ import debounce from 'lodash/debounce'
import {AddQuestion} from '~/routes/questions/add'
import {Action, ActionType} from '~/routes/questions/actions'
import {MagnifyingGlass, Edit} from '~/components/icons-generated'
import {useSearch, Question as QuestionType, SearchResult} from '~/hooks/search'
import {useSearch, SearchResult} from '~/hooks/search'
import AutoHeight from 'react-auto-height'
import Dialog from '~/components/dialog'
import {useSearchParams} from '@remix-run/react'
import {LINK_WITHOUT_DETAILS_CLS} from '~/routes/questions/$question'
import {Question} from '~/server-utils/stampy'

type Props = {
onSiteAnswersRef: MutableRefObject<QuestionType[]>
onSiteAnswersRef: MutableRefObject<Question[]>
openQuestionTitles: string[]
onSelect: (pageid: string, title: string) => void
embedWithoutDetails?: boolean
Expand Down

0 comments on commit 7eee668

Please sign in to comment.