Skip to content

Commit

Permalink
kram-profile - small fix to wrapper
Browse files Browse the repository at this point in the history
  • Loading branch information
alecazam committed Mar 4, 2024
1 parent a021565 commit 7653d3b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kram-profile/kram-profile/kram_profileApp.swift
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,7 @@ extension View {
public func searchableOptional<S>(text: Binding<String>, isPresented: Binding<Bool>, placement: SearchFieldPlacement = .automatic, prompt: S) -> some View where S : StringProtocol {
if #available(macOS 14.0, *) {
return self.searchable(text: text, isPresented: isPresented, placement:
.sidebar, prompt: prompt)
placement, prompt: prompt)
}
else {
return self
Expand Down

0 comments on commit 7653d3b

Please sign in to comment.