Skip to content

Commit 83c030b

Browse files
committed
prettier changes
1 parent 295ef95 commit 83c030b

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

dangerfile.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ async function runAndroid() {
6262
return
6363
}
6464

65-
if (!await didNativeDependencyChange()) {
65+
if (!(await didNativeDependencyChange())) {
6666
// nothing changed to make this worth analyzing
6767
return
6868
}
@@ -84,7 +84,7 @@ async function runiOS() {
8484
return
8585
}
8686

87-
if (!await didNativeDependencyChange()) {
87+
if (!(await didNativeDependencyChange())) {
8888
// nothing changed to make this worth analyzing
8989
return
9090
}

source/user-agent.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,9 @@ const aaoVersion = version || 'unknown'
77
const platformString =
88
Platform.OS === 'ios'
99
? 'iOS'
10-
: Platform.OS === 'android' ? 'Android' : 'unknown'
10+
: Platform.OS === 'android'
11+
? 'Android'
12+
: 'unknown'
1113
const platformVersion = Platform.Version || 'unknown'
1214

1315
export const AAO_USER_AGENT = `AllAboutOlaf/${aaoVersion} (${platformString}/${platformVersion})`

source/views/settings/components/login-button.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,9 @@ export function LoginButton({
2424
title={
2525
loading
2626
? `Logging in to ${label}…`
27-
: loggedIn ? `Sign Out of ${label}` : `Sign In to ${label}`
27+
: loggedIn
28+
? `Sign Out of ${label}`
29+
: `Sign In to ${label}`
2830
}
2931
/>
3032
)

0 commit comments

Comments
 (0)