Skip to content

Commit

Permalink
Fix rebase naming changes
Browse files Browse the repository at this point in the history
  • Loading branch information
JakeLin committed May 23, 2021
1 parent 70b40cb commit ef44a25
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -15,14 +15,14 @@ struct IdentifiableListItemViewModel: Identifiable {
}

final class MomentsListObservableObject: ObservableObject {
private let viewModel: MomentsListViewModel
private let viewModel: MomentsTimelineViewModel
private let disposeBag: DisposeBag = .init()

@Published var listItems: [IdentifiableListItemViewModel] = []

init(userID: String,
momentsRepo: MomentsRepoType) {
viewModel = MomentsListViewModel(userID: userID, momentsRepo: momentsRepo)
viewModel = MomentsTimelineViewModel(userID: userID, momentsRepo: momentsRepo)

setupBindings()
}
Expand Down

0 comments on commit ef44a25

Please sign in to comment.