Skip to content

Commit

Permalink
Update Nos/Extensions/Bundle+Current.swift
Browse files Browse the repository at this point in the history
Co-authored-by: Bryan Montz <bryanmontz@me.com>
  • Loading branch information
pelumy and bryanmontz authored Jan 15, 2025
1 parent 3119e9e commit 15af777
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions Nos/Extensions/Bundle+Current.swift
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,7 @@ extension Bundle {
#if DEBUG
return .debug
#else
if isTestFlight {
return .testFlight
} else {
return .appStore
}
return isTestFlight ? .testFlight : .appStore
#endif
}
}

0 comments on commit 15af777

Please sign in to comment.