From 0f63b7aca2d53e7e70503287f097651da89fd44b Mon Sep 17 00:00:00 2001 From: Eric Doughty-Papassideris Date: Wed, 12 Mar 2025 23:15:18 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=A8=20chore:=20backend=20linting?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tdrive/backend/node/src/services/documents/services/index.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tdrive/backend/node/src/services/documents/services/index.ts b/tdrive/backend/node/src/services/documents/services/index.ts index 5b9df5ec..29d39304 100644 --- a/tdrive/backend/node/src/services/documents/services/index.ts +++ b/tdrive/backend/node/src/services/documents/services/index.ts @@ -3,7 +3,6 @@ import { getLogger, logger, TdriveLogger } from "../../../core/platform/framewor import { CrudException, ListResult, - Paginable, Pagination, } from "../../../core/platform/framework/api/crud-service"; import Repository, { @@ -1621,7 +1620,7 @@ export class DocumentsService { options: SearchDocumentsOptions, context?: DriveExecutionContext, ): Promise> => { - let allResults: DriveFile[] = []; + const allResults: DriveFile[] = []; let nextPage = options.pagination ? Pagination.fromPaginable(options.pagination) : new Pagination();