Skip to content

Commit 5dba08b

Browse files
committed
run prettier
1 parent 0d411ce commit 5dba08b

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

source/views/components/toolbar/toolbar.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,11 @@ type ToolbarPropsType = {
3030
export 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>

source/views/settings/sections/login-credentials.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

2727
class CredentialsLoginSection extends React.Component {
2828
props: CredentialsSectionPropsType

0 commit comments

Comments
 (0)