Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions Sources/ComposableArchitecture/Internal/Deprecations.swift
Original file line number Diff line number Diff line change
Expand Up @@ -2079,6 +2079,8 @@ extension View {
if let action {
store.send(.presented(fromDestinationAction(action)), animation: animation)
}
@unknown default:
break
}
} label: {
Text(button.label)
Expand Down Expand Up @@ -2132,6 +2134,8 @@ extension View {
if let action {
store.send(.presented(fromDestinationAction(action)), animation: animation)
}
@unknown default:
break
}
} label: {
Text(button.label)
Expand Down
1 change: 1 addition & 0 deletions Sources/ComposableArchitecture/Internal/Logger.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import OSLog
import Combine

@_spi(Logging)
@preconcurrency @MainActor
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ extension View {
if let action {
store?.send(action, animation: animation)
}
@unknown default:
break
}
} label: {
Text(button.label)
Expand Down Expand Up @@ -59,6 +61,8 @@ extension View {
if let action {
store?.send(action, animation: animation)
}
@unknown default:
break
}
} label: {
Text(button.label)
Expand Down