Skip to content
This repository has been archived by the owner on Mar 12, 2020. It is now read-only.

Commit

Permalink
Update selectors.ts (#1324)
Browse files Browse the repository at this point in the history
just noticed this was not working, small bug

Signed-off-by: andrew <[email protected]>
  • Loading branch information
andrewxhill authored Aug 27, 2019
1 parent 9c06155 commit ddb4f13
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion App/features/contacts/selectors.ts
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ export const searchResults = (state: ContactsState) => {
const sames = arr.filter(
(el, ind) => el.address === current.address && ind > index
)
return sames.length === 1
return sames.length === 0
})
.map(result => {
const selector = makeIsKnown(result.address)
Expand Down

0 comments on commit ddb4f13

Please sign in to comment.