From 68e811952691a675447863ee01faaeccd0780dfa Mon Sep 17 00:00:00 2001 From: Kevin Hahn Date: Wed, 15 Jan 2025 20:47:28 +0700 Subject: [PATCH] fix lint error --- frontend/viewer/src/lib/services/projects-service.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/frontend/viewer/src/lib/services/projects-service.ts b/frontend/viewer/src/lib/services/projects-service.ts index f422cae30..057c980de 100644 --- a/frontend/viewer/src/lib/services/projects-service.ts +++ b/frontend/viewer/src/lib/services/projects-service.ts @@ -5,6 +5,9 @@ export type Project = IProjectModel; export type ServerStatus = IServerStatus; export class ProjectService implements ICombinedProjectsService { + serverProjects(serverId: string, forceRefresh: boolean): Promise { + throw new Error('Method not implemented.'); + } supportsFwData(): Promise { throw new Error('Method not implemented.'); }