Skip to content

Commit

Permalink
[Chore/#104] 빌드 오류
Browse files Browse the repository at this point in the history
  • Loading branch information
Zoe0929 committed Nov 15, 2024
1 parent 6ff8d5f commit 85de21a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import Domain
final class PointViewModel: ObservableObject {
@Published var challengeDay = 1
@Published var currentPoint = 0
@Published public var pointList: [PointList] = []
@Published public var pointList: [PointStatuse] = []
@Published var statusList: [String] = []
@Published var isPresented = false
@Published var earnPoint = 0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ import SwiftUI
import FamilyControls
import DeviceActivity

import OnboardingFeature
import DSKit

public struct ChallengeView: View {
Expand Down Expand Up @@ -52,13 +51,13 @@ extension ChallengeView {
listView
.padding(.top, 20)
//TODO: Coordinator 패턴 적용해서 이 부분 뜯어내면 좋을거 같습니다
NavigationLink(
destination: OnboardingContentView(isChallengeMode: true, onboardingState: 2),
isActive: $viewModel.navigateToCreate,
label: {
EmptyView()
.background(DSKitAsset.blackground.swiftUIColor)
})
// NavigationLink(
// destination: OnboardingContentView(isChallengeMode: true, onboardingState: 2),
// isActive: $viewModel.navigateToCreate,
// label: {
// EmptyView()
// .background(DSKitAsset.blackground.swiftUIColor)
// })
}
.customNavigationBar(title: StringLiteral.NavigationBar.challenge,
showBackButton: false,
Expand Down

0 comments on commit 85de21a

Please sign in to comment.