mirror of
https://github.com/cheeaun/phanpy.git
synced 2025-03-14 12:18:30 +03:00
Such stupid mistake, I made
This commit is contained in:
parent
46c7ee5de1
commit
91a7485b7b
5 changed files with 20 additions and 5 deletions
|
@ -45,7 +45,10 @@ function Following({ title, path, id, ...props }) {
|
|||
return bDate - aDate;
|
||||
});
|
||||
}
|
||||
return results;
|
||||
return {
|
||||
...results,
|
||||
value,
|
||||
};
|
||||
}
|
||||
|
||||
async function checkForUpdates() {
|
||||
|
|
|
@ -60,7 +60,10 @@ function Hashtags(props) {
|
|||
saveStatus(item, instance);
|
||||
});
|
||||
}
|
||||
return results;
|
||||
return {
|
||||
...results,
|
||||
value,
|
||||
};
|
||||
}
|
||||
|
||||
async function checkForUpdates() {
|
||||
|
|
|
@ -46,7 +46,10 @@ function List(props) {
|
|||
saveStatus(item, instance);
|
||||
});
|
||||
}
|
||||
return results;
|
||||
return {
|
||||
...results,
|
||||
value,
|
||||
};
|
||||
}
|
||||
|
||||
async function checkForUpdates() {
|
||||
|
|
|
@ -45,7 +45,10 @@ function Public({ local, ...props }) {
|
|||
saveStatus(item, instance);
|
||||
});
|
||||
}
|
||||
return results;
|
||||
return {
|
||||
...results,
|
||||
value,
|
||||
};
|
||||
}
|
||||
|
||||
async function checkForUpdates() {
|
||||
|
|
|
@ -43,7 +43,10 @@ function Trending(props) {
|
|||
saveStatus(item, instance);
|
||||
});
|
||||
}
|
||||
return results;
|
||||
return {
|
||||
...results,
|
||||
value,
|
||||
};
|
||||
}
|
||||
|
||||
async function checkForUpdates() {
|
||||
|
|
Loading…
Add table
Reference in a new issue