Bug fix (was raising an error when no rows were returned)

This commit is contained in:
Eric van der Vlist 2023-02-05 17:41:33 +01:00
parent b821748fec
commit e528db9fad
1 changed files with 0 additions and 10 deletions

View File

@ -50,16 +50,6 @@ export const getFamily = async (
endkey, endkey,
...options, ...options,
}); });
if (allDocs.rows.at(-1).id > endkey) {
console.error({
caller: 'getFamilly',
key,
endkey,
options,
local,
allDocs,
});
}
return allDocs; return allDocs;
}; };