add resolve param to user search api request

This commit is contained in:
taehoon 2019-06-24 07:49:22 -04:00
parent 79d39356c4
commit 1c03bd0ebc

View file

@ -6,7 +6,8 @@ const search = ({query, store}) => {
store,
url: '/api/v1/accounts/search',
params: {
q: query
q: query,
resolve: true
}
})
.then((data) => data.json())