From 68aef4804a282988bac4f9bd4d5c80e3e2916c4c Mon Sep 17 00:00:00 2001 From: David Date: Wed, 26 Apr 2023 11:34:24 +0700 Subject: [PATCH] [310] Update format code --- fastlane/Constants/Constant.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fastlane/Constants/Constant.swift b/fastlane/Constants/Constant.swift index c77b3cee..ae8ddf83 100644 --- a/fastlane/Constants/Constant.swift +++ b/fastlane/Constants/Constant.swift @@ -84,14 +84,14 @@ extension Constant { case production = "Production" var productName: String { "\(Constant.projectName) \(rawValue)".trimmed } - + var scheme: String { switch self { case .staging: return "\(Constant.projectName) \(rawValue)".trimmed case .production: return Constant.projectName.trimmed } } - + var bundleId: String { switch self { case .staging: return Constant.stagingBundleId