diff options
author | Paul Frazee <pfrazee@gmail.com> | 2023-04-19 12:43:34 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-19 12:43:34 -0500 |
commit | 8917cf77a0a73e38ad769cea090591c229d5a868 (patch) | |
tree | e9e253ffdbc046d3ef478f30f843053c8f803f33 /src | |
parent | 192f842ebd98506928bb153d5b32bd2dca2b4aca (diff) | |
download | voidsky-8917cf77a0a73e38ad769cea090591c229d5a868.tar.zst |
Fix: consistently give suggestions in search (#493)
Diffstat (limited to 'src')
-rw-r--r-- | src/view/com/search/Suggestions.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/view/com/search/Suggestions.tsx b/src/view/com/search/Suggestions.tsx index c1355bfb5..aacab5c98 100644 --- a/src/view/com/search/Suggestions.tsx +++ b/src/view/com/search/Suggestions.tsx @@ -91,7 +91,7 @@ export const Suggestions = observer( for (const source of foafs.sources) { const item = foafs.foafs.get(source) if (!item || item.follows.length === 0) { - return + continue } items = items .concat([ |