From cdb4b60487964034dece603907680676c52d0ab1 Mon Sep 17 00:00:00 2001 From: Nico Verbruggen Date: Tue, 26 Jul 2022 19:34:30 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=91=8C=20Add=20warning=20message=20for=20?= =?UTF-8?q?WIP=20launch=20screen?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- phpmon/Domain/Menu/MainMenu+Startup.swift | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/phpmon/Domain/Menu/MainMenu+Startup.swift b/phpmon/Domain/Menu/MainMenu+Startup.swift index d38e4b1..c0d834d 100644 --- a/phpmon/Domain/Menu/MainMenu+Startup.swift +++ b/phpmon/Domain/Menu/MainMenu+Startup.swift @@ -89,7 +89,8 @@ extension MainMenu { Stats.evaluateSponsorMessageShouldBeDisplayed() // Present first launch screen if needed - if Stats.successfulLaunchCount >= 1 { // TODO: Make this == 1 for release + #warning("The launch screen will be presented every time you launch the app.") + if Stats.successfulLaunchCount >= 1 { Log.info("Should present the first launch screen!") DispatchQueue.main.async { OnboardingWC.show()