@luxfi/core 4.4.7 → 4.4.9

Sign up to get free protection for your applications and to get access to all the features.
@@ -13,7 +13,7 @@ const AuthListener = () => {
13
13
 
14
14
  useEffect(() => {
15
15
  const handleMessage = (event: any) => {
16
- if (event.origin === process.env.NEXT_PUBLIC_AUTH_ORIGIN) {
16
+ if (event.origin === process.env.NEXT_PUBLIC_LOGIN_SITE_URL) {
17
17
  const token = event.data
18
18
  auth.loginWithCustomToken(token)
19
19
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@luxfi/core",
3
- "version": "4.4.7",
3
+ "version": "4.4.9",
4
4
  "description": "Library that contains shared UI primitives, support for a common design system, and other boilerplate support.",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/",