Skip to content
This repository has been archived by the owner on Jun 20, 2023. It is now read-only.

Fix homescreen from not loading (DEV) #4955

Merged
merged 1 commit into from
Mar 18, 2022
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
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ class FamilyTestRepository @Inject constructor(
@AppScope private val appScope: CoroutineScope
) {

val familyTests: Flow<Set<FamilyTest>> = flowOf()
val familyTests: Flow<Set<FamilyTest>> = flowOf(emptySet())
val recycledFamilyTests: Flow<Set<FamilyTest>> = flowOf()

suspend fun registerTest(
Expand Down