Remove pagination logic in fetchBlocks api

This commit is contained in:
taehoon 2019-02-14 03:31:20 -05:00
parent 395d212904
commit 32c112bc96

View file

@ -521,11 +521,7 @@ const fetchMutes = ({credentials}) => {
}
const fetchBlocks = ({page, credentials}) => {
let url = BLOCKS_URL
if (page) {
url = url + `?page=${page}`
}
return fetch(url, {
return fetch(BLOCKS_URL, {
headers: authHeaders(credentials)
}).then((data) => {
if (data.ok) {