Skip to content

Commit

Permalink
Clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
ruixhuang committed Jan 3, 2025
1 parent 25cd36f commit 80031ed
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions PlatformUI/PlatformUI/Components/Input/PlatformInput.swift
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import Introspect
import Popovers

// a View is required here since programmatically focusing a textView requires a @FocusState property wrapper
public struct PlatformInputView: View {
private struct PlatformInputView: View {
@ObservedObject private var model: PlatformInputModel
@FocusState private var isFocused: Bool

Expand All @@ -25,7 +25,7 @@ public struct PlatformInputView: View {
self.styleKey = styleKey
}

public var body: some View {
var body: some View {
return HStack(alignment: .center, spacing: 4) {
VStack(alignment: .leading, spacing: 4) {
header
Expand Down

0 comments on commit 80031ed

Please sign in to comment.