Skip to content
This repository was archived by the owner on Nov 8, 2022. It is now read-only.

Commit 1709376

Browse files
committed
refactor(rename): recv_event -> recieve
1 parent a17fb84 commit 1709376

File tree

34 files changed

+38
-38
lines changed

34 files changed

+38
-38
lines changed

containers/AccountViewer/logic.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ const log = buildLog('L:AccountViewer')
1111

1212
const { SR71, $solver, asyncRes, asyncErr } = asyncSuit
1313
const sr71$ = new SR71({
14-
resv_event: [EVENT.LOGIN],
14+
recieve: [EVENT.LOGIN],
1515
})
1616

1717
let store = null

containers/ArticleBanner/logic.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ const log = buildLog('L:ArticleBanner')
1111

1212
const { SR71, $solver, asyncRes, asyncErr } = asyncSuit
1313
const sr71$ = new SR71({
14-
resv_event: [EVENT.REFRESH_REACTIONS],
14+
recieve: [EVENT.REFRESH_REACTIONS],
1515
})
1616

1717
let sub$ = null

containers/ArticleViewerHeader/logic.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ const log = buildLog('L:ArticleViewerHeader')
1313
// user set it from FavoriteSetter
1414
const { SR71, $solver, asyncRes, asyncErr } = asyncSuit
1515
const sr71$ = new SR71({
16-
resv_event: [EVENT.REFRESH_REACTIONS],
16+
recieve: [EVENT.REFRESH_REACTIONS],
1717
})
1818

1919
let sub$ = null

containers/Cashier/logic.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import S from './schema'
1717
const { SR71, $solver, asyncRes, asyncErr } = asyncSuit
1818

1919
const sr71$ = new SR71({
20-
resv_event: [EVENT.CALL_CASHIER],
20+
recieve: [EVENT.CALL_CASHIER],
2121
})
2222
let sub$ = null
2323

containers/CheatsheetThread/logic.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ const log = buildLog('L:CheatsheetThread')
1313

1414
const { SR71, $solver, asyncRes, asyncErr } = asyncSuit
1515
const sr71$ = new SR71({
16-
resv_event: [EVENT.COMMUNITY_CHANGE, EVENT.TABBER_CHANGE],
16+
recieve: [EVENT.COMMUNITY_CHANGE, EVENT.TABBER_CHANGE],
1717
})
1818

1919
let sub$ = null

containers/CommunitiesContent/logic.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ const log = buildLog('L:CommunitiesContent')
1111

1212
const { SR71, $solver, asyncRes, asyncErr } = asyncSuit
1313
const sr71$ = new SR71({
14-
resv_event: [EVENT.LOGOUT, EVENT.LOGIN, EVENT.REFRESH_COMMUNITIES],
14+
recieve: [EVENT.LOGOUT, EVENT.LOGIN, EVENT.REFRESH_COMMUNITIES],
1515
})
1616

1717
let store = null

containers/CommunityBanner/logic.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import S from './schema'
1717
const log = buildLog('L:CommunityBanner')
1818

1919
const { SR71, $solver, asyncRes, asyncErr } = asyncSuit
20-
const sr71$ = new SR71({ resv_event: [EVENT.COMMUNITY_CHANGE] })
20+
const sr71$ = new SR71({ recieve: [EVENT.COMMUNITY_CHANGE] })
2121

2222
let sub$ = null
2323
let store = null

containers/CommunitySetter/logic.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ const log = buildLog('L:CommunitySetter')
1010

1111
const { SR71, $solver, asyncRes, asyncErr } = asyncSuit
1212
const sr71$ = new SR71({
13-
resv_event: [EVENT.COMMUNITY_MIRROR],
13+
recieve: [EVENT.COMMUNITY_MIRROR],
1414
})
1515

1616
let sub$ = null

containers/Doraemon/logic/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ const log = buildLog('L:Doraemon')
2626

2727
const { SR71, $solver, asyncRes, asyncErr } = asyncSuit
2828
const sr71$ = new SR71({
29-
resv_event: [EVENT.QUERY_DORAMON],
29+
recieve: [EVENT.QUERY_DORAMON],
3030
})
3131

3232
let sub$ = null

containers/ErrorBox/logic.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ const log = buildLog('L:ErrorBox')
99

1010
const { SR71, $solver, asyncRes } = asyncSuit
1111
const sr71$ = new SR71({
12-
resv_event: [EVENT.ERR_RESCUE],
12+
recieve: [EVENT.ERR_RESCUE],
1313
})
1414

1515
let sub$ = null

0 commit comments

Comments
 (0)