Skip to content

Commit

Permalink
chore: fix linting in logger.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
gorhom committed Jun 23, 2022
1 parent 098ccdf commit 74a1290
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utilities/logger.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ type Print = (options: PrintOptions) => void;
let isLoggingEnabled = false;

// __DEV__ global is by default not defined in React Native Web builds
const isDev = Boolean(typeof __DEV__ !== 'undefined' && __DEV__)
const isDev = Boolean(typeof __DEV__ !== 'undefined' && __DEV__);

const enableLogging = () => {
if (!isDev) {
Expand Down

0 comments on commit 74a1290

Please sign in to comment.