Skip to content
This repository has been archived by the owner on Oct 4, 2023. It is now read-only.

Commit

Permalink
[DMs][PAY-832] Fix compose modal mutuals default (#2873)
Browse files Browse the repository at this point in the history
  • Loading branch information
rickyrombo authored Feb 16, 2023
1 parent 4cc759c commit 7b043e5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1531,6 +1531,7 @@ export const audiusBackend = ({
async function getFolloweeFollows(userId: ID, limit = 100, offset = 0) {
let followers = []
try {
await waitForLibsInit()
followers = await audiusLibs.User.getMutualFollowers(
limit,
offset,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ export const SearchUsersModal = (props: SearchUsersModalProps) => {
const users = getUsers(state, { ids })
return ids.map((id) => users[id])
},
[hasQuery, userIds]
[hasQuery, userIds, isVisible]
)

useDebounce(
Expand Down

0 comments on commit 7b043e5

Please sign in to comment.