Compare commits

...

2 Commits

Author SHA1 Message Date
50b35a0025 Merge branch 'claude/serene-mclean-b76496' 2026-05-18 12:21:41 -04:00
7671416038 fix unresolved reference: remove unused settingsRepo from CaptureViewModel
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-05-18 12:21:41 -04:00

View File

@@ -24,7 +24,6 @@ data class CaptureUiState(
class CaptureViewModel(app: Application) : AndroidViewModel(app) { class CaptureViewModel(app: Application) : AndroidViewModel(app) {
private val dao = (app as SynqApp).db.captureDao() private val dao = (app as SynqApp).db.captureDao()
private val settingsRepo = app.settings
private val _state = MutableStateFlow(CaptureUiState()) private val _state = MutableStateFlow(CaptureUiState())
val state: StateFlow<CaptureUiState> = _state.asStateFlow() val state: StateFlow<CaptureUiState> = _state.asStateFlow()