Skip to content

Commit 190467f

Browse files
committed
prettier changes to dev mode constants
1 parent 5aa83f9 commit 190467f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

modules/constants/index.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@ let IS_RC: boolean
2626
export const isRc = () => IS_RC
2727

2828
// checks if the build should show debugging tools
29-
export const isDevMode = () => !IS_PRODUCTION || (IS_ALPHA || IS_BETA || IS_PRE || IS_RC)
29+
export const isDevMode = () =>
30+
!IS_PRODUCTION || (IS_ALPHA || IS_BETA || IS_PRE || IS_RC)
3031

3132
export const setVersionInfo = (versionStr: string) => {
3233
let [version, buildNum] = versionStr.split('+')

0 commit comments

Comments
 (0)