Skip to content

Commit 3666b68

Browse files
update deps
1 parent 5af59fd commit 3666b68

File tree

4 files changed

+541
-935
lines changed

4 files changed

+541
-935
lines changed

packages/adapters/openlogin-adapter/src/config.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,6 @@ export const getOpenloginDefaultOptions = (chainNamespace?: ChainNamespaceType,
1111
uxMode: UX_MODE.POPUP,
1212
},
1313
chainConfig: chainNamespace ? getChainConfig(chainNamespace, chainId) : null,
14-
loginSettings: {
15-
relogin: true,
16-
},
14+
loginSettings: {},
1715
};
1816
};

packages/ui/.eslintrc.js

Lines changed: 0 additions & 29 deletions
This file was deleted.

packages/ui/.eslintrc.json

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
{
2+
"root": true,
3+
"extends": ["@toruslabs/eslint-config-react"],
4+
"parser": "@typescript-eslint/parser",
5+
"parserOptions": {
6+
"sourceType": "module",
7+
"ecmaVersion": 11,
8+
"project": "./tsconfig.json"
9+
},
10+
"rules": {
11+
"no-console": 2,
12+
"@typescript-eslint/no-throw-literal": 0,
13+
"import/extensions": [
14+
"error",
15+
"ignorePackages",
16+
{
17+
"js": "never",
18+
"jsx": "never",
19+
"ts": "never",
20+
"tsx": "never"
21+
}
22+
]
23+
},
24+
"env": {
25+
"es2020": true,
26+
"browser": true,
27+
"node": true
28+
}
29+
}

0 commit comments

Comments
 (0)