Skip to content

Commit

Permalink
Refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
shin-usu committed Aug 14, 2024
1 parent 3e41460 commit adcfa92
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app-ios/Sources/CommonComponents/SelectionChips.swift
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public struct SelectionChips<SelectableCase: Selectable>: View where SelectableC
}
}

ForEach(SelectableCase.allCases, id: \.id) { selection in
ForEach(SelectableCase.allCases) { selection in
SelectionChip(
title: selection.caseTitle,
isMultiSelect: false,
Expand Down

0 comments on commit adcfa92

Please sign in to comment.