From 866d79b1266b48de120778cb0896e4377e78a2b5 Mon Sep 17 00:00:00 2001 From: Massimiliano Angelino Date: Mon, 12 Feb 2024 19:37:44 +0100 Subject: [PATCH] fix(#372): remove constructor args --- .../react-app/src/common/api-client/api-client.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/user-interface/react-app/src/common/api-client/api-client.ts b/lib/user-interface/react-app/src/common/api-client/api-client.ts index c998e75a0..61fcbcae0 100644 --- a/lib/user-interface/react-app/src/common/api-client/api-client.ts +++ b/lib/user-interface/react-app/src/common/api-client/api-client.ts @@ -105,8 +105,8 @@ export class ApiClient { } public get userFeedback() { - if(!this._userFeedbackClient) { - this._userFeedbackClient = new UserFeedbackClient(this._appConfig); + if (!this._userFeedbackClient) { + this._userFeedbackClient = new UserFeedbackClient(); } return this._userFeedbackClient;