Reduce logging in SetList

This commit is contained in:
Brandon Presley 2022-09-25 18:12:42 +13:00
parent be5571a965
commit 1ee95021b9
1 changed files with 1 additions and 1 deletions

View File

@ -57,7 +57,7 @@ export default function SetList() {
const refresh = useCallback(async () => {
predict();
const newSets = await getSets({search: `%${search}%`, limit, offset: 0});
console.log(`${SetList.name}.refresh:`, {newSets});
console.log(`${SetList.name}.refresh:`, {first: newSets[0]});
if (newSets.length === 0) return setSets([]);
setSets(newSets);
setOffset(0);