File tree Expand file tree Collapse file tree 5 files changed +12
-8
lines changed
views/settings/components Expand file tree Collapse file tree 5 files changed +12
-8
lines changed Original file line number Diff line number Diff 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 }
Original file line number Diff line number Diff line change 169169 "minimist" : " 1.2.0" ,
170170 "mkdirp" : " 0.5.1" ,
171171 "pify" : " 3.0.0" ,
172- "prettier" : " 1.11 .1" ,
172+ "prettier" : " 1.12 .1" ,
173173 "pretty-bytes" : " 4.0.2" ,
174174 "pretty-quick" : " 1.4.1" ,
175175 "prop-types" : " 15.6.1" ,
Original file line number Diff line number Diff line change @@ -7,7 +7,9 @@ const aaoVersion = version || 'unknown'
77const platformString =
88 Platform . OS === 'ios'
99 ? 'iOS'
10- : Platform . OS === 'android' ? 'Android' : 'unknown'
10+ : Platform . OS === 'android'
11+ ? 'Android'
12+ : 'unknown'
1113const platformVersion = Platform . Version || 'unknown'
1214
1315export const AAO_USER_AGENT = `AllAboutOlaf/${ aaoVersion } (${ platformString } /${ platformVersion } )`
Original file line number Diff line number Diff 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 )
Original file line number Diff line number Diff line change @@ -5026,9 +5026,9 @@ preserve@^0.2.0:
50265026 version "0.2.0"
50275027 resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b"
50285028
5029- prettier@1.11 .1 :
5030- version "1.11 .1"
5031- resolved "https://registry.yarnpkg.com/prettier/-/prettier-1.11 .1.tgz#61e43fc4cd44e68f2b0dfc2c38cd4bb0fccdcc75 "
5029+ prettier@1.12 .1 :
5030+ version "1.12 .1"
5031+ resolved "https://registry.yarnpkg.com/prettier/-/prettier-1.12 .1.tgz#c1ad20e803e7749faf905a409d2367e06bbe7325 "
50325032
5033503350345034 version "4.0.2"
You can’t perform that action at this time.
0 commit comments