Skip to content
Snippets Groups Projects
Commit afbb7082 authored by Guilherme Gazzo's avatar Guilherme Gazzo
Browse files

fix CI

parent c5def579
No related branches found
No related tags found
No related merge requests found
......@@ -37,7 +37,7 @@ const UserAutoCompleteMultiple = ({ onChange, ...props }: UserAutoCompleteMultip
return (
<AutoComplete
{...props}
onChange={onChange}
onChange={onChange as any}
filter={filter}
setFilter={setFilter}
renderSelected={({ value: selected }): ReactElement =>
......
......@@ -22,7 +22,7 @@ export type CreateChannelProps = {
handleReadOnly?: () => void;
};
hasUnsavedChanges: boolean;
onChangeUsers: (value: string, action: string) => void;
onChangeUsers: (value: string, action: 'remove' | undefined) => void;
onChangeType: React.FormEventHandler<HTMLElement>;
onChangeBroadcast: React.FormEventHandler<HTMLElement>;
canOnlyCreateOneType?: false | 'p' | 'c';
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment