Skip to content

Commit

Permalink
Replace usage of new SwiftUI .rect shorthand to fix CI builds
Browse files Browse the repository at this point in the history
  • Loading branch information
stackotter committed Nov 14, 2023
1 parent 5f1c92d commit 9f95e11
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Sources/Client/Views/Play/SelectOption.swift
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ struct SelectOption<Option: Hashable, Row: View, Content: View>: View {

Image(systemName: "chevron.right")
}
.contentShape(.rect)
.contentShape(Rectangle())
.onTapGesture {
guard !excludedOptions.contains(option) else {
return
Expand Down

0 comments on commit 9f95e11

Please sign in to comment.