Post

Replies

Boosts

Views

Activity

Reply to Including a staleDate in Live Activity request causes activity to be disabled with loading spinner
Hi Singy, I had the same issue with my Live Activity and came across your thread here. For me the solution was to provide an explizit view for when the Activity is Stale. This can be done e.g. by incorporating a query. struct LiveActivityView: View { let context: ActivityViewContext<TimerActivityAttributes> var body: some View { Stack { if context.isStale { // Stale View } else { // Normal View } } } } I hope this helps you in solving your issue.
Nov ’23