Disable refreshable on Universe view

Updates are streamed from the network, removing the need for a refresh
action

Signed-off-by: Daniel D’Aquino <daniel@daquino.me>
This commit is contained in:
Daniel D’Aquino
2025-09-23 18:11:20 -07:00
parent 798f9ec7b4
commit eda4212aa7

View File

@@ -126,12 +126,6 @@ struct SearchHomeView: View {
.onDisappear {
loadingTask?.cancel()
}
.refreshable {
// Fetch new information by unsubscribing and resubscribing to the relay
loadingTask?.cancel()
loadingTask = Task { await model.reload() }
try? await loadingTask?.value
}
}
}