Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion PickaView/Views/Root/TabBarViewModel.swift
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,11 @@ final class TabBarViewModel {

init() {
self.coreDataManager = CoreDataManager()
self.pixabayVideoService = PixabayVideoService()
do {
self.pixabayVideoService = try PixabayVideoService()
} catch {
fatalError("PixabayVideoService 초기화 실패: \(error)")
}
}

func makeTabViewControllers() -> [UIViewController] {
Expand Down