We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2e6d34e commit 5a4a9d5Copy full SHA for 5a4a9d5
Sources/ComposableArchitecture/Effect.swift
@@ -346,7 +346,8 @@ extension Publisher {
346
///
347
/// - Returns: An effect that never produces output or errors.
348
public func fireAndForget<NewOutput, NewFailure>() -> Effect<NewOutput, NewFailure> {
349
- return self
+ return
350
+ self
351
.flatMap { _ in Empty() }
352
.catch { _ in Empty() }
353
.eraseToEffect()
0 commit comments