diff --git a/frontend/src/api/ApiCaller.tsx b/frontend/src/api/ApiCaller.tsx index 561810a17..16a2f4c76 100644 --- a/frontend/src/api/ApiCaller.tsx +++ b/frontend/src/api/ApiCaller.tsx @@ -134,7 +134,7 @@ export class BackendAPICaller { static async getEnabledRobots(): Promise { const path: string = 'robots' const result = await BackendAPICaller.GET(path).catch(BackendAPICaller.handleError('GET', path)) - return result.content.filter((robot) => robot.isarConnected) + return result.content.filter((robot) => !robot.deprecated) } static async getRobotById(robotId: string): Promise {