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

Commit edf50f7

Browse files
committed
style: fmt
1 parent 84b387d commit edf50f7

File tree

6 files changed

+27
-6
lines changed

6 files changed

+27
-6
lines changed

components/PostItem/index.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,9 @@ const PostItem = ({
2828
accountInfo,
2929
}) => {
3030
// debug('customization --> ', customization)
31-
const { customization: { contentsLayout, contentDivider } } = accountInfo
31+
const {
32+
customization: { contentsLayout, contentDivider },
33+
} = accountInfo
3234

3335
/*
3436
debug('entry --> ', entry)

containers/CheatsheetThread/logic.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,6 @@ const ErrSolver = [
101101
export function init(_store) {
102102
store = _store
103103

104-
debug(store)
105104
if (sub$) sub$.unsubscribe()
106105
sub$ = sr71$.data().subscribe($solver(DataSolver, ErrSolver))
107106
getCheatsheet()

containers/JobsThread/logic.js

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,12 @@ const debug = makeDebugger('L:JobsThread')
3434
let store = null
3535
let sub$ = null
3636

37-
const validFilter = R.pickBy(R.compose(R.not, R.isEmpty))
37+
const validFilter = R.pickBy(
38+
R.compose(
39+
R.not,
40+
R.isEmpty
41+
)
42+
)
3843

3944
export const inAnchor = () => store.setHeaderFix(false)
4045
export const outAnchor = () => store.setHeaderFix(true)

containers/PostsThread/logic.js

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,12 @@ let store = null
3535
let sub$ = null
3636

3737
// TODO: move to utils
38-
const validFilter = R.pickBy(R.compose(R.not, R.isEmpty))
38+
const validFilter = R.pickBy(
39+
R.compose(
40+
R.not,
41+
R.isEmpty
42+
)
43+
)
3944

4045
export const inAnchor = () => store.setHeaderFix(false)
4146
export const outAnchor = () => store.setHeaderFix(true)

containers/ReposThread/logic.js

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,12 @@ const debug = makeDebugger('L:ReposThread')
3232

3333
let store = null
3434

35-
const validFilter = R.pickBy(R.compose(R.not, R.isEmpty))
35+
const validFilter = R.pickBy(
36+
R.compose(
37+
R.not,
38+
R.isEmpty
39+
)
40+
)
3641

3742
export const inAnchor = () => store.setHeaderFix(false)
3843
export const outAnchor = () => store.setHeaderFix(true)

containers/VideosThread/logic.js

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,12 @@ const debug = makeDebugger('L:VideosThread')
3434

3535
let store = null
3636

37-
const validFilter = R.pickBy(R.compose(R.not, R.isEmpty))
37+
const validFilter = R.pickBy(
38+
R.compose(
39+
R.not,
40+
R.isEmpty
41+
)
42+
)
3843

3944
export function loadVideos(page = 1) {
4045
const { mainPath } = store.curRoute

0 commit comments

Comments
 (0)