File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -30,7 +30,11 @@ type ToolbarPropsType = {
3030export function Toolbar ( { children, onPress} : ToolbarPropsType ) {
3131 return (
3232 < View style = { toolbarStyles . shadow } >
33- < Touchable onPress = { onPress } style = { toolbarStyles . container } borderless = { true } >
33+ < Touchable
34+ onPress = { onPress }
35+ style = { toolbarStyles . container }
36+ borderless = { true }
37+ >
3438 { children }
3539 </ Touchable >
3640 </ View >
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ type CredentialsSectionPropsType = {
2222 logOut : ( ) => any ,
2323 validateCredentials : ( username : string , password : string ) => any ,
2424 setCredentials : ( username : string , password : string ) => any ,
25- } ;
25+ }
2626
2727class CredentialsLoginSection extends React . Component {
2828 props : CredentialsSectionPropsType
You can’t perform that action at this time.
0 commit comments