We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 81d5d2d commit 85e3fd1Copy full SHA for 85e3fd1
1 file changed
Application/DevLogPresentation/Sources/Login/LoginFeature.swift
@@ -5,8 +5,8 @@
5
// Created by opfic on 6/5/26.
6
//
7
8
-import ComposableArchitecture
9
-import DevLogDomain
+@preconcurrency import ComposableArchitecture
+@preconcurrency import DevLogDomain
10
import Foundation
11
12
@Reducer
@@ -20,15 +20,15 @@ struct LoginFeature {
20
var alertMessage = ""
21
}
22
23
- enum Action {
+ enum Action: Sendable {
24
case setAlert(Bool, AlertType? = nil)
25
case tapSignInButton(AuthProvider)
26
case signInSucceeded
27
case signInFailed(AlertType)
28
case signInCancelled
29
30
31
- enum AlertType: Equatable {
+ enum AlertType: Equatable, Sendable {
32
case emailUnavailable
33
case error
34
0 commit comments