AutosuggestInput: convert to TSX

This commit is contained in:
Alex Gleason 2022-06-04 18:21:16 -05:00
parent e6c25a1887
commit ba803e200c
No known key found for this signature in database
GPG key ID: 7211D1F99744FBB7
2 changed files with 1 additions and 1 deletions

View file

@ -59,7 +59,7 @@ const AutosuggestAccountInput: React.FC<IAutosuggestAccountInput> = ({
onChange(e);
};
const handleSelected = (_tokenStart: string, _lastToken: string, accountId: string) => {
const handleSelected = (_tokenStart: number, _lastToken: string | null, accountId: string) => {
onSelected(accountId);
};