bug: lower case RecommendedFollows

This commit is contained in:
Kieran 2023-04-04 14:40:51 +01:00
parent 2066773914
commit 39dbfe1183
Signed by: Kieran
GPG Key ID: DE71CEB3925BE941
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@ export default function DiscoverFollows() {
const dispatch = useDispatch();
const navigate = useNavigate();
const sortedReccomends = useMemo(() => {
return RecommendedFollows.sort(() => (Math.random() >= 0.5 ? -1 : 1));
return RecommendedFollows.sort(() => (Math.random() >= 0.5 ? -1 : 1)).map(a => a.toLowerCase());
}, []);
async function clearEntropyAndGo() {