From 54f89bcd1a7fb0b92b65d8c0ea3847d635e11133 Mon Sep 17 00:00:00 2001 From: Ruben Beltran del Rio Date: Sun, 6 Jul 2025 12:45:37 +0200 Subject: Allow adding and removing templates --- Map/Business/CustomStage.swift | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Map/Business/CustomStage.swift') diff --git a/Map/Business/CustomStage.swift b/Map/Business/CustomStage.swift index 388531b..924e814 100644 --- a/Map/Business/CustomStage.swift +++ b/Map/Business/CustomStage.swift @@ -24,7 +24,7 @@ struct CustomStage: Identifiable, Codable { self.name = name self.stage = stage } - + static func cynefinDefault() -> CustomStage { return CustomStage( name: String(localized: "stage_type.cynefin"), @@ -36,7 +36,7 @@ struct CustomStage: Identifiable, Codable { ) ) } - + static func placeholderDefault() -> CustomStage { return CustomStage( name: String(localized: "stage_type.placeholder"), @@ -48,4 +48,4 @@ struct CustomStage: Identifiable, Codable { ) ) } -} \ No newline at end of file +} -- cgit