Remove tap event from counter
This commit is contained in:
parent
509b54a736
commit
866496407e
|
@ -13,7 +13,6 @@ import Semaphore
|
|||
|
||||
struct HomeFeedView: View {
|
||||
@Environment(\.managedObjectContext) private var viewContext
|
||||
@Environment(\.refresh) private var refresh
|
||||
|
||||
@EnvironmentObject var applicationState: ApplicationState
|
||||
@EnvironmentObject var routerPath: RouterPath
|
||||
|
@ -209,10 +208,5 @@ struct HomeFeedView: View {
|
|||
}
|
||||
.padding(.top, 10)
|
||||
.padding(.trailing, 6)
|
||||
.onTapGesture {
|
||||
Task {
|
||||
await refresh?()
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue