removed unused impoert

This commit is contained in:
Anton Tranelis 2024-07-29 13:04:14 +02:00
parent 0fdd39b391
commit 05ce1ec5ff

View File

@ -1,6 +1,5 @@
import * as React from 'react' import * as React from 'react'
import { useEffect } from 'react'; import { useEffect } from 'react';
import { decodeTag } from '../../Utils/FormatTags';
import { TagView } from '../Templates/TagView'; import { TagView } from '../Templates/TagView';
export const Autocomplete = ({ inputProps, suggestions, onSelected, pushFilteredSuggestions, setFocus }: { inputProps: any, suggestions: Array<any>, onSelected: (suggestion) => void, pushFilteredSuggestions?: Array<any>, setFocus?: boolean }) => { export const Autocomplete = ({ inputProps, suggestions, onSelected, pushFilteredSuggestions, setFocus }: { inputProps: any, suggestions: Array<any>, onSelected: (suggestion) => void, pushFilteredSuggestions?: Array<any>, setFocus?: boolean }) => {