Skip to content

Commit

Permalink
[#63] 에러 처리 및 PreviewValue 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
jayden000106 committed Feb 17, 2025
1 parent efcbb71 commit 0e70c04
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions Soomsil-USaint/Application/AppReducer.swift
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,7 @@ struct AppReducer {
return .send(.initialize)
case .checkMinimumVersionResponse(.failure(let error)):
debugPrint("Error at AppReducer - \(error)")
// TODO: 에러 처리
return .none
return .send(.initialize)
case .initialize:
return .run { send in
await send(.initResponse(Result {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ extension RemoteConfigClient: DependencyKey {

static let previewValue: RemoteConfigClient = Self(
getMinimumVersion: {
return "1.0.0"
return "3.0.2"
}
)

Expand Down

0 comments on commit 0e70c04

Please sign in to comment.