Skip to content

Commit

Permalink
[#914] Fix EnvironmentUtil bug (#915)
Browse files Browse the repository at this point in the history
  • Loading branch information
mustafaozhan authored Aug 9, 2022
1 parent 7d10230 commit 047a690
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ios/CCC/Util/EnvironmentUtil.swift
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ import Foundation

public struct EnvironmentUtil {
public static var isRelease: Bool {
#if RELEASE
return true
#else
#if DEBUG
return false
#else
return true
#endif
}
}

0 comments on commit 047a690

Please sign in to comment.