Skip to content

Commit

Permalink
Fix NotesViewModel
Browse files Browse the repository at this point in the history
  • Loading branch information
shubertm committed Oct 25, 2023
1 parent b374c36 commit 27ee2ab
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ import space.taran.arkmemo.preferences.MemoPreferences
import javax.inject.Inject

@HiltViewModel
class NotesViewModel @Inject constructor(
@Inject var textNotesRepo: TextNotesRepo
): ViewModel() {
class NotesViewModel @Inject constructor(): ViewModel() {

@Inject lateinit var textNotesRepo: TextNotesRepo

private val iODispatcher = Dispatchers.IO

Expand Down

0 comments on commit 27ee2ab

Please sign in to comment.