Update eslint to 8.27.0

This commit is contained in:
Fedor Indutny 2022-11-17 16:45:19 -08:00 committed by GitHub
parent c8fb43a846
commit 98ef4c627a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
499 changed files with 8995 additions and 8494 deletions

View file

@ -42,7 +42,7 @@ type DispatchProps = {
export type Props = OwnProps & DispatchProps;
export const AddUserToAnotherGroupModal = ({
export function AddUserToAnotherGroupModal({
i18n,
theme,
contact,
@ -51,7 +51,7 @@ export const AddUserToAnotherGroupModal = ({
showToast,
candidateConversations,
regionCode,
}: Props): JSX.Element | null => {
}: Props): JSX.Element | null {
const [searchTerm, setSearchTerm] = React.useState('');
const [filteredConversations, setFilteredConversations] = React.useState(
filterAndSortConversationsByRecent(candidateConversations, '', undefined)
@ -177,7 +177,6 @@ export const AddUserToAnotherGroupModal = ({
onClickArchiveButton={noop}
onClickContactCheckbox={noop}
onSelectConversation={setSelectedGroupId}
renderMessageSearchResult={_ => <></>}
showChooseGroupMembers={noop}
lookupConversationWithoutUuid={async _ => undefined}
showUserNotFoundModal={noop}
@ -223,4 +222,4 @@ export const AddUserToAnotherGroupModal = ({
)}
</>
);
};
}