diff --git a/webapp/src/properties/multiperson/multiperson.tsx b/webapp/src/properties/multiperson/multiperson.tsx index a49368eb5..9f14339cc 100644 --- a/webapp/src/properties/multiperson/multiperson.tsx +++ b/webapp/src/properties/multiperson/multiperson.tsx @@ -59,9 +59,9 @@ const MultiPerson = (props: PropertyProps) => { const boardUsersById = useAppSelector<{[key: string]: IUser}>(getBoardUsers) const boardUsers = useAppSelector(getBoardUsersList) - const formatOptionLabel = (user: any) => { + const formatOptionLabel = (user: any): JSX.Element => { if (!user) { - return {} + return
} let profileImg if (imageURLForUser) {