forked from AkkomaGang/akkoma-fe
add resolve param to user search api request
This commit is contained in:
parent
79d39356c4
commit
1c03bd0ebc
1 changed files with 2 additions and 1 deletions
|
@ -6,7 +6,8 @@ const search = ({query, store}) => {
|
||||||
store,
|
store,
|
||||||
url: '/api/v1/accounts/search',
|
url: '/api/v1/accounts/search',
|
||||||
params: {
|
params: {
|
||||||
q: query
|
q: query,
|
||||||
|
resolve: true
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
.then((data) => data.json())
|
.then((data) => data.json())
|
||||||
|
|
Loading…
Reference in a new issue