@@ -53,8 +53,7 @@ import SettingsView from '../views/settings'
5353import CreditsView from '../views/settings/credits'
5454import PrivacyView from '../views/settings/privacy'
5555import LegalView from '../views/settings/legal'
56- import CredentialsLoginSection
57- from '../views/settings/sections/login-credentials'
56+ import CredentialsLoginSection from '../views/settings/sections/login-credentials'
5857import TokenLoginSection from '../views/settings/sections/login-token'
5958import OddsAndEndsSection from '../views/settings/sections/odds-and-ends'
6059import SupportSection from '../views/settings/sections/support'
@@ -74,11 +73,10 @@ type ViewCollectionType = {
7473 } ,
7574}
7675
77- const Nav = ( { children} : { children ?: Function } ) => (
76+ const Nav = ( { children} : { children ?: Function } ) =>
7877 < Navigator
7978 renderScene = { ( route , navigator ) => children && children ( { route, navigator} ) }
8079 />
81- )
8280
8381export class SnapshotsView extends React . Component {
8482 state = {
@@ -209,13 +207,13 @@ export class SnapshotsView extends React.Component {
209207 render ( ) {
210208 const selected = get ( this . views , this . state . viewPath , { } )
211209
212- const options = this . viewsAsList ( ) . map ( ( [ parent , child ] ) => (
210+ const options = this . viewsAsList ( ) . map ( ( [ parent , child ] ) =>
213211 < Picker . Item
214212 key = { `${ parent } .${ child } ` }
215213 label = { `${ parent } ❯ ${ child } ` }
216214 value = { `${ parent } .${ child } ` }
217- />
218- ) )
215+ /> ,
216+ )
219217
220218 const height = Dimensions . get ( 'window' ) . height
221219 const heightDiff = Platform . OS === 'ios' ? 64 : 56
0 commit comments