Skip to content

Commit

Permalink
Fix conditional logic
Browse files Browse the repository at this point in the history
  • Loading branch information
matt committed Sep 26, 2024
1 parent 4ede070 commit 1da99e0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/typescript/sdk/src/server-env.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ if (typeof process.env.EMOJICOIN_INDEXER_URL === "undefined") {
}
export const { EMOJICOIN_INDEXER_URL } = process.env;

export const FETCH_DEBUG = process.env.FETCH_DEBUG === "true" ?? false;
export const FETCH_DEBUG_VERBOSE = process.env.FETCH_DEBUG_VERBOSE === "true" ?? false;
export const FETCH_DEBUG = process.env.FETCH_DEBUG === "true";
export const FETCH_DEBUG_VERBOSE = process.env.FETCH_DEBUG_VERBOSE === "true";

0 comments on commit 1da99e0

Please sign in to comment.