Minor fixes

This commit is contained in:
世界
2026-04-20 05:28:31 +08:00
parent 142e82034e
commit a09170256d
10 changed files with 69 additions and 61 deletions
@@ -3,10 +3,10 @@ import SwiftUI
@MainActor
public struct SheetContent<Content: View>: View {
private let title: String
private let title: LocalizedStringKey
private let content: Content
public init(_ title: String, @ViewBuilder content: () -> Content) {
public init(_ title: LocalizedStringKey, @ViewBuilder content: () -> Content) {
self.title = title
self.content = content()
}