Merge branch 'dev' into feature/biome

This commit is contained in:
Untone 2024-02-04 09:57:41 +03:00
commit 02de191b6d

View File

@ -79,7 +79,7 @@ export const InviteMembers = (props: Props) => {
const handleInputChange = async (value: string) => {
if (value.length > 1) {
const match = authorsToInvite().filter((author) =>
const match = authorsToInvite()?.filter((author) =>
author.name.toLowerCase().includes(value.toLowerCase()),
)
setSearchResultAuthors(match)