From 15af7774a5102341ed00534595f49f524b4b7693 Mon Sep 17 00:00:00 2001 From: Itunu Raimi Date: Wed, 15 Jan 2025 14:55:17 +0100 Subject: [PATCH] Update Nos/Extensions/Bundle+Current.swift Co-authored-by: Bryan Montz --- Nos/Extensions/Bundle+Current.swift | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/Nos/Extensions/Bundle+Current.swift b/Nos/Extensions/Bundle+Current.swift index 7004c8722..b1c2d537d 100644 --- a/Nos/Extensions/Bundle+Current.swift +++ b/Nos/Extensions/Bundle+Current.swift @@ -39,11 +39,7 @@ extension Bundle { #if DEBUG return .debug #else - if isTestFlight { - return .testFlight - } else { - return .appStore - } + return isTestFlight ? .testFlight : .appStore #endif } }