Skip to content

Commit

Permalink
✏️ Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
WhiteHyun committed May 6, 2024
1 parent 02e5bf9 commit db42bfe
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ import SwiftUI

struct HomeProductDetailSelectionView<ViewModel>: View where ViewModel: HomeViewModelRepresentable {
@EnvironmentObject private var viewModel: ViewModel
@State private var convenienceStoreModalPresented: Bool = false
@State private var promotionModalPresented: Bool = false
@State private var convenienceStoreModalPresented = false
@State private var promotionModalPresented = false

var body: some View {
HStack {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import SwiftUI
struct HomeView<ViewModel>: View where ViewModel: HomeViewModelRepresentable {
@StateObject private var viewModel: ViewModel
@State private var isOnboardingSheetOpen = false
@AppStorage("isFirstLaunch") private var isFirstLaunch: Bool = false
@AppStorage("isFirstLaunch") private var isFirstLaunch = false
@Environment(\.injected) private var container

init(viewModel: @autoclosure @escaping () -> ViewModel) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ struct ProductInfoLineGraphView<ViewModel>: View where ViewModel: ProductInfoVie
@EnvironmentObject private var viewModel: ViewModel

@State private var offset: CGSize = .zero
@State private var index: Int = 0
@State private var index = 0
@State private var frameSize: CGSize = .zero
@State private var symbolLocations: [CGPoint] = []

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import SwiftUI

struct SearchView<ViewModel>: View where ViewModel: SearchViewModelRepresentable {
@StateObject private var viewModel: ViewModel
@State private var text: String = ""
@State private var text = ""
@Environment(\.dismiss) private var dismiss
@Environment(\.injected) private var container

Expand Down

0 comments on commit db42bfe

Please sign in to comment.