@luxfi/core 4.4.14 → 4.4.15

Sign up to get free protection for your applications and to get access to all the features.
@@ -33,6 +33,8 @@ const LoginPanel: React.FC<{
33
33
 
34
34
  const onLogin = (token: string) => {
35
35
  setCookie('auth-token', token, {
36
+ sameSite: 'none',
37
+ secure: true,
36
38
  expires: new Date(Date.now() + 1000 * 60 * 60 * 24 * 30), // 30 days
37
39
  })
38
40
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@luxfi/core",
3
- "version": "4.4.14",
3
+ "version": "4.4.15",
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/",