Fix syntax

This commit is contained in:
Arkadiusz Fal 2024-02-02 11:48:03 +01:00
parent 371471ad81
commit 8b0c9d3d0a

View File

@ -436,9 +436,9 @@ enum ButtonLabelStyle: String, CaseIterable, Defaults.Serializable {
var description: String { var description: String {
switch self { switch self {
case .iconOnly: case .iconOnly:
"Icon only" return "Icon only"
case .iconAndText: case .iconAndText:
"Icon and text" return "Icon and text"
} }
} }
} }