@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/dist/cjs/src/FormoAnalytics.d.ts.map +1 -1
- package/dist/cjs/src/FormoAnalytics.js +3 -4
- package/dist/cjs/src/FormoAnalytics.js.map +1 -1
- package/dist/cjs/tsconfig.tsbuildinfo +1 -1
- package/dist/esm/src/FormoAnalytics.d.ts.map +1 -1
- package/dist/esm/src/FormoAnalytics.js +3 -4
- package/dist/esm/src/FormoAnalytics.js.map +1 -1
- package/dist/esm/tsconfig.tsbuildinfo +1 -1
- package/dist/index.umd.min.js +1 -1
- package/dist/index.umd.min.js.map +1 -1
- package/package.json +1 -1
- package/src/FormoAnalytics.ts +2 -1
package/package.json
CHANGED
package/src/FormoAnalytics.ts
CHANGED
|
@@ -131,7 +131,7 @@ export class FormoAnalytics implements IFormoAnalytics {
|
|
|
131
131
|
let attempt = 0;
|
|
132
132
|
|
|
133
133
|
this.setSessionCookie();
|
|
134
|
-
const address =
|
|
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
|
|