Skip to content

Commit

Permalink
♻️ リネーム漏れの対応
Browse files Browse the repository at this point in the history
  • Loading branch information
tatsutakein committed Dec 2, 2023
1 parent 23f2264 commit 5507ba6
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import Dependencies
import NitoKmp

public struct AuthStatusStreamUseCaseProvider {
private static var observeAuthStatusUseCase: AuthStatusStreamUseCase {
private static var authStatusStreamUseCase: AuthStatusStreamUseCase {
Container.shared.get(type: AuthStatusStreamUseCase.self)
}

Expand All @@ -14,7 +14,7 @@ extension AuthStatusStreamUseCaseProvider: DependencyKey {
static public var liveValue: AuthStatusStreamUseCaseProvider =
AuthStatusStreamUseCaseProvider(
execute: {
observeAuthStatusUseCase.invoke().stream()
authStatusStreamUseCase.invoke().stream()
}
)
}
Expand Down

0 comments on commit 5507ba6

Please sign in to comment.