From 6edf331aff16dfcf6f2eaedb2c33e7a00200d643 Mon Sep 17 00:00:00 2001 From: Dev Date: Thu, 20 Jul 2023 13:22:47 +0100 Subject: [PATCH] Use corect type --- project/src/callbacks/ProfileCallbacks.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/project/src/callbacks/ProfileCallbacks.ts b/project/src/callbacks/ProfileCallbacks.ts index f3af52e3..fb54e76f 100644 --- a/project/src/callbacks/ProfileCallbacks.ts +++ b/project/src/callbacks/ProfileCallbacks.ts @@ -191,8 +191,8 @@ export class ProfileCallbacks * Handle /launcher/profiles */ // eslint-disable-next-line @typescript-eslint/no-unused-vars - public getAllMiniProfiles(url: string, info: any, sessionID: string): string + public getAllMiniProfiles(url: string, info: IEmptyRequestData, sessionID: string): string { return this.httpResponse.noBody(this.profileController.getMiniProfiles()); } -} +} \ No newline at end of file