diff --git a/src/pages/following.jsx b/src/pages/following.jsx index 4b7a8947..627a74e4 100644 --- a/src/pages/following.jsx +++ b/src/pages/following.jsx @@ -45,7 +45,10 @@ function Following({ title, path, id, ...props }) { return bDate - aDate; }); } - return results; + return { + ...results, + value, + }; } async function checkForUpdates() { diff --git a/src/pages/hashtag.jsx b/src/pages/hashtag.jsx index a4db5bd6..65d94eb8 100644 --- a/src/pages/hashtag.jsx +++ b/src/pages/hashtag.jsx @@ -60,7 +60,10 @@ function Hashtags(props) { saveStatus(item, instance); }); } - return results; + return { + ...results, + value, + }; } async function checkForUpdates() { diff --git a/src/pages/list.jsx b/src/pages/list.jsx index ad2e54ce..c020daf5 100644 --- a/src/pages/list.jsx +++ b/src/pages/list.jsx @@ -46,7 +46,10 @@ function List(props) { saveStatus(item, instance); }); } - return results; + return { + ...results, + value, + }; } async function checkForUpdates() { diff --git a/src/pages/public.jsx b/src/pages/public.jsx index 218eaf1a..17400d17 100644 --- a/src/pages/public.jsx +++ b/src/pages/public.jsx @@ -45,7 +45,10 @@ function Public({ local, ...props }) { saveStatus(item, instance); }); } - return results; + return { + ...results, + value, + }; } async function checkForUpdates() { diff --git a/src/pages/trending.jsx b/src/pages/trending.jsx index dfed5ea7..cf1543e5 100644 --- a/src/pages/trending.jsx +++ b/src/pages/trending.jsx @@ -43,7 +43,10 @@ function Trending(props) { saveStatus(item, instance); }); } - return results; + return { + ...results, + value, + }; } async function checkForUpdates() {