Fix padding on search results view

Changelog-Fixed: Fix padding on search results view
Closes: #232
This commit is contained in:
OlegAba
2023-01-03 11:45:01 -05:00
committed by William Casarin
parent 501412e75c
commit 43c6084620
2 changed files with 2 additions and 2 deletions

View File

@@ -55,7 +55,7 @@ struct SearchHomeView: View {
// Fetch new information by unsubscribing and resubscribing to the relay
model.unsubscribe()
model.subscribe()
}.padding(.horizontal)
}
}
var MainContent: some View {

View File

@@ -79,7 +79,7 @@ struct SearchResultsView: View {
case .none:
Text("none")
}
}
}.padding(.horizontal)
}
}