Skip to content

Commit

Permalink
fix(#372): remove constructor args
Browse files Browse the repository at this point in the history
  • Loading branch information
massi-ang authored and bigadsoleiman committed Feb 12, 2024
1 parent 6f0ad46 commit 866d79b
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 866d79b

Please sign in to comment.