This repository was archived by the owner on Nov 8, 2022. It is now read-only.
File tree Expand file tree Collapse file tree 6 files changed +27
-6
lines changed Expand file tree Collapse file tree 6 files changed +27
-6
lines changed Original file line number Diff line number Diff 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)
Original file line number Diff line number Diff line change @@ -101,7 +101,6 @@ const ErrSolver = [
101101export 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 ( )
Original file line number Diff line number Diff line change @@ -34,7 +34,12 @@ const debug = makeDebugger('L:JobsThread')
3434let store = null
3535let 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
3944export const inAnchor = ( ) => store . setHeaderFix ( false )
4045export const outAnchor = ( ) => store . setHeaderFix ( true )
Original file line number Diff line number Diff line change @@ -35,7 +35,12 @@ let store = null
3535let 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
4045export const inAnchor = ( ) => store . setHeaderFix ( false )
4146export const outAnchor = ( ) => store . setHeaderFix ( true )
Original file line number Diff line number Diff line change @@ -32,7 +32,12 @@ const debug = makeDebugger('L:ReposThread')
3232
3333let 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
3742export const inAnchor = ( ) => store . setHeaderFix ( false )
3843export const outAnchor = ( ) => store . setHeaderFix ( true )
Original file line number Diff line number Diff line change @@ -34,7 +34,12 @@ const debug = makeDebugger('L:VideosThread')
3434
3535let 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
3944export function loadVideos ( page = 1 ) {
4045 const { mainPath } = store . curRoute
You can’t perform that action at this time.
0 commit comments