commit 43c608462054ae4daab85fecdb2dac8dca36944b
parent 501412e75c61c0ac06a16dd4aeb0c737187c8130
Author: OlegAba <mail@olegaba.com>
Date: Tue, 3 Jan 2023 11:45:01 -0500
Fix padding on search results view
Changelog-Fixed: Fix padding on search results view
Closes: #232
Diffstat:
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/damus/Views/SearchHomeView.swift b/damus/Views/SearchHomeView.swift
@@ -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 {
diff --git a/damus/Views/SearchResultsView.swift b/damus/Views/SearchResultsView.swift
@@ -79,7 +79,7 @@ struct SearchResultsView: View {
case .none:
Text("none")
}
- }
+ }.padding(.horizontal)
}
}