Fixing lint errors

This commit is contained in:
Andrew Henry 2025-04-18 15:54:00 -07:00
parent bc9f4a97dc
commit e8a477e966
2 changed files with 3 additions and 1 deletions

View File

@ -273,7 +273,7 @@ test.describe('Grand Search', () => {
});
test('Search results are debounced @couchdb @network', async ({ page }) => {
// Unfortunately 404s are always logged to the JavaScript console and can't be supressed
// Unfortunately 404s are always logged to the JavaScript console and can't be suppressed
// A 404 is now thrown when we test for the presence of the object names view used by search.
test.info().annotations.push({
type: 'issue',

View File

@ -471,7 +471,9 @@ class CouchObjectProvider {
}
if (startKey !== undefined && endKey !== undefined) {
// eslint-disable-next-line
requestBody.startkey = startKey;
// eslint-disable-next-line
requestBody.endkey = endKey;
} else {
requestBody.keys = stringifiedKeys;