From adcfa928d92bc11da7a5167a3a17fa300c06c021 Mon Sep 17 00:00:00 2001 From: vixer93 Date: Wed, 14 Aug 2024 14:05:45 +0900 Subject: [PATCH] Refactor --- app-ios/Sources/CommonComponents/SelectionChips.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app-ios/Sources/CommonComponents/SelectionChips.swift b/app-ios/Sources/CommonComponents/SelectionChips.swift index b90cdc90e..bacd9b965 100644 --- a/app-ios/Sources/CommonComponents/SelectionChips.swift +++ b/app-ios/Sources/CommonComponents/SelectionChips.swift @@ -24,7 +24,7 @@ public struct SelectionChips: View where SelectableC } } - ForEach(SelectableCase.allCases, id: \.id) { selection in + ForEach(SelectableCase.allCases) { selection in SelectionChip( title: selection.caseTitle, isMultiSelect: false,