mirror of
https://github.com/yattee/yattee.git
synced 2025-08-09 20:24:06 +00:00
Fix default alignment swiftlint offense
This commit is contained in:
@@ -39,7 +39,7 @@ struct AccountForm: View {
|
||||
}
|
||||
|
||||
var header: some View {
|
||||
HStack(alignment: .center) {
|
||||
HStack {
|
||||
Text("Add Account")
|
||||
.font(.title2.bold())
|
||||
|
||||
|
@@ -41,7 +41,7 @@ struct InstanceForm: View {
|
||||
}
|
||||
|
||||
private var header: some View {
|
||||
HStack(alignment: .center) {
|
||||
HStack {
|
||||
Text("Add Location")
|
||||
.font(.title2.bold())
|
||||
|
||||
@@ -84,7 +84,7 @@ struct InstanceForm: View {
|
||||
}
|
||||
|
||||
private var footer: some View {
|
||||
HStack(alignment: .center) {
|
||||
HStack {
|
||||
AccountValidationStatus(
|
||||
app: $app,
|
||||
isValid: $isValid,
|
||||
|
@@ -53,7 +53,7 @@ struct QualityProfileForm: View {
|
||||
}
|
||||
|
||||
var header: some View {
|
||||
HStack(alignment: .center) {
|
||||
HStack {
|
||||
Text(editing ? "Edit Quality Profile" : "Add Quality Profile")
|
||||
.font(.title2.bold())
|
||||
|
||||
|
Reference in New Issue
Block a user