Skip to content

Commit 667571b

Browse files
committed
Remove trailing commas in Swift
1 parent 03a3736 commit 667571b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Fruitties/iosApp/iosApp/ui/CartView.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ struct CartView: View {
3030
/// The `CartViewModel.Factory` and `creationExtras` are provided to enable dependency injection
3131
/// and proper initialization of the ViewModel with its required `AppContainer`.
3232
let cartViewModel: CartViewModel = viewModelStoreOwner.viewModel(
33-
factory: appContainer.value.cartViewModelFactory,
33+
factory: appContainer.value.cartViewModelFactory
3434
)
3535

3636
/// Observes the `cartUiState` `StateFlow` from the `CartViewModel` using SKIE's `Observing` utility.

Fruitties/iosApp/iosApp/ui/ContentView.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ struct ContentView: View {
3030
/// The `MainViewModel.Factory` and `creationExtras` are provided to enable dependency injection
3131
/// and proper initialization of the ViewModel with its required `AppContainer`.
3232
let mainViewModel: MainViewModel = viewModelStoreOwner.viewModel(
33-
factory: appContainer.value.mainViewModelFactory,
33+
factory: appContainer.value.mainViewModelFactory
3434
)
3535
NavigationStack {
3636
Observing(mainViewModel.homeUiState) { homeUIState in

0 commit comments

Comments
 (0)