We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
x |> Task.attempt identity |> Cmd.map fn --> x |> Task.attempt fn x |> Task.perform identity |> Cmd.map fn --> x |> Task.perform fn
(seen in https://github.com/Flyp-Inc/lamdera-extra/blob/05c8c59187730265f0a9fd2312e3171171ccf3ac/src/Counter.elm#L192C22-L192C29)
Should we also simplify the following?
x |> Task.map fn |> Task.attempt identity --> x |> Task.attempt fn x |> Task.map fn |> Task.perform identity --> x |> Task.perform fn
The text was updated successfully, but these errors were encountered:
Sorry, something went wrong.
No branches or pull requests
(seen in https://github.com/Flyp-Inc/lamdera-extra/blob/05c8c59187730265f0a9fd2312e3171171ccf3ac/src/Counter.elm#L192C22-L192C29)
Should we also simplify the following?
The text was updated successfully, but these errors were encountered: