frontend-rw #1

Merged
marcin merged 347 commits from frontend-rw into develop 2024-12-05 15:32:18 -08:00
2 changed files with 2 additions and 0 deletions
Showing only changes of commit 4c0bd101c5 - Show all commits

View file

@ -11,6 +11,7 @@ import type { InputThemes } from 'pl-fe/components/ui/input';
const noOp = () => { };
interface IAutosuggestAccountInput {
id?: string;
onChange: React.ChangeEventHandler<HTMLInputElement>;
onSelected: (accountId: string) => void;
autoFocus?: boolean;

View file

@ -78,6 +78,7 @@ const SearchInput = () => {
<div className='relative'>
<AutosuggestAccountInput
id='search'
placeholder={intl.formatMessage(messages.placeholder)}
value={value}
onChange={handleChange}