@formo/analytics 1.11.6-alpha.1 → 1.11.6-alpha.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@formo/analytics",
3
- "version": "1.11.6-alpha.1",
3
+ "version": "1.11.6-alpha.2",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "https://github.com/getformo/sdk.git"
@@ -131,7 +131,7 @@ export class FormoAnalytics implements IFormoAnalytics {
131
131
  let attempt = 0;
132
132
 
133
133
  this.setSessionCookie();
134
- const address = await this.getCurrentWallet();
134
+ const address = this.currentConnectedAddress;
135
135
 
136
136
  console.log('address:', address);
137
137
 
@@ -185,6 +185,7 @@ export class FormoAnalytics implements IFormoAnalytics {
185
185
  }
186
186
  };
187
187
 
188
+ this.getCurrentWallet();
188
189
  await sendRequest();
189
190
  }
190
191