From 8c53d2f0514ad47daec072f56598b567331a6916 Mon Sep 17 00:00:00 2001 From: Siddharth9890 Date: Thu, 12 Sep 2024 11:14:53 +0530 Subject: [PATCH] fix: removed config from account class --- src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index a6a81c5..6c14602 100644 --- a/src/index.ts +++ b/src/index.ts @@ -51,6 +51,6 @@ export class Gateway { this.dataAsset = new DataAsset(this.client, validationService); this.auth = new Auth(this.client); this.dataModel = new DataModel(this.client, validationService, this.config); - this.account = new Account(this.client, validationService, this.config); + this.account = new Account(this.client); } }