Browse Source

Removed TypeaheadProps

maeshinshin 2 years ago
parent
commit
68763202eb
1 changed files with 1 additions and 2 deletions
  1. 1 2
      apps/app/src/components/SearchPage/SearchModalTriggerInput.tsx

+ 1 - 2
apps/app/src/components/SearchPage/SearchModalTriggerInput.tsx

@@ -6,11 +6,10 @@ import React, {
 } from 'react';
 
 import type { IFocusable } from '~/client/interfaces/focusable';
-import type { TypeaheadProps } from '~/client/interfaces/react-bootstrap-typeahead';
 
 import { useSearchModal } from '../../features/search/client/stores/search';
 
-type Props = TypeaheadProps & {
+type Props = {
   keywordOnInit: string,
 };