bug: lower case RecommendedFollows
This commit is contained in:
parent
2066773914
commit
39dbfe1183
@ -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() {
|
||||
|
Loading…
x
Reference in New Issue
Block a user