@formo/analytics 1.13.4-alpha.11 → 1.13.4-alpha.12
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.js +1 -1
- package/dist/cjs/src/FormoAnalytics.js.map +1 -1
- package/dist/cjs/tsconfig.tsbuildinfo +1 -1
- package/dist/esm/src/FormoAnalytics.js +1 -1
- 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 +1 -1
package/package.json
CHANGED
package/src/FormoAnalytics.ts
CHANGED
|
@@ -714,7 +714,7 @@ export class FormoAnalytics implements IFormoAnalytics {
|
|
|
714
714
|
method: "eth_accounts",
|
|
715
715
|
});
|
|
716
716
|
if (!res || res.length === 0) return null;
|
|
717
|
-
return res;
|
|
717
|
+
return res.filter(isAddress);
|
|
718
718
|
} catch (err) {
|
|
719
719
|
if ((err as any).code !== 4001) {
|
|
720
720
|
console.log(
|