Remove Close button from Settings toolbar on macOS

This commit is contained in:
Arkadiusz Fal
2026-04-20 22:20:23 +02:00
parent 7d95a11286
commit 49cdfb74af

View File

@@ -72,18 +72,6 @@ struct SettingsView: View {
}
}
}
.toolbar {
if showCloseButton {
ToolbarItem(placement: .confirmationAction) {
Button(role: .cancel) {
dismiss()
} label: {
Label(String(localized: "common.close"), systemImage: "xmark")
.labelStyle(.iconOnly)
}
}
}
}
}
#endif