From eef98f0a0963e265ece79b9d1943c76c15ebae36 Mon Sep 17 00:00:00 2001 From: Soichi Ikebe Date: Wed, 21 Aug 2024 23:22:07 +0900 Subject: [PATCH] Fix the property of options to let --- 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 1cf7d9747..af402de19 100644 --- a/app-ios/Sources/CommonComponents/SelectionChips.swift +++ b/app-ios/Sources/CommonComponents/SelectionChips.swift @@ -5,7 +5,7 @@ import Theme public struct SelectionChips: View where SelectableCase.AllCases: RandomAccessCollection { @Binding public var selected: SelectableCase? public var notSelectedTitle: String? - public var options: [SelectableCase] + public let options: [SelectableCase] public init( selected: Binding,