File tree Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -2,6 +2,7 @@ module.exports = {
2
2
extends : [ 'ringcentral-typescript' ] ,
3
3
rules : {
4
4
'import/no-default-export' : 'off' ,
5
+ 'import/no-unresolved' : 'off' ,
5
6
'jsx-a11y/anchor-is-valid' : 'off' , // Next.js use <a>
6
7
'no-console' : 'off' ,
7
8
'no-unused-expressions' : 'off' , // tests
Original file line number Diff line number Diff line change 17
17
18
18
- uses : actions/setup-node@v1
19
19
with :
20
- node-version : ' 15 .x'
20
+ node-version : ' 16 .x'
21
21
registry-url : ' https://registry.npmjs.org'
22
22
23
23
- id : yarn-cache-dir-path
Original file line number Diff line number Diff line change @@ -1165,11 +1165,11 @@ export default wrapper.withRedux(
1165
1165
const {Component, pageProps} = this .props ;
1166
1166
return (
1167
1167
< ReactReduxContext .Consumer >
1168
- {({store }) = > {
1168
+ {({store }) = > (
1169
1169
< PersistGate persistor = {store.__persistor } loading = {<div>Loading</div>}>
1170
1170
< Component {... pageProps } / >
1171
- </PersistGate>;
1172
- } }
1171
+ < / PersistGate >
1172
+ ) }
1173
1173
< / ReactReduxContext .Consumer >
1174
1174
);
1175
1175
}
You can’t perform that action at this time.
0 commit comments