Skip to content

Commit

Permalink
Merge pull request #411 from SujalXplores/fix/prettier-issue
Browse files Browse the repository at this point in the history
fix: prettier issue
  • Loading branch information
wonderwhy-er authored Nov 26, 2024
2 parents f0a668b + e8e2911 commit 60cfb5a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/utils/logger.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ interface Logger {
setLevel: (level: DebugLevel) => void;
}

let currentLevel: DebugLevel = (import.meta.env.VITE_LOG_LEVEL ?? import.meta.env.DEV) ? 'debug' : 'info';
let currentLevel: DebugLevel = import.meta.env.VITE_LOG_LEVEL ?? import.meta.env.DEV ? 'debug' : 'info';

const isWorker = 'HTMLRewriter' in globalThis;
const supportsColor = !isWorker;
Expand Down

0 comments on commit 60cfb5a

Please sign in to comment.