fix: remove duplicate @Suppress annotation on SearchFilterRow
Kotlin rejects the annotation being applied twice on the same function — broke compileFdroidDebugKotlin and compilePlayDebugKotlin. Keeping the one above @Composable, removing the duplicate below. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
-1
@@ -217,7 +217,6 @@ private fun hasNonDefaultFilters(
|
||||
@OptIn(ExperimentalMaterial3Api::class)
|
||||
@Suppress("AssignedValueIsNeverRead")
|
||||
@Composable
|
||||
@Suppress("AssignedValueIsNeverRead")
|
||||
private fun SearchFilterRow(searchBarViewModel: SearchBarViewModel) {
|
||||
val currentScope by searchBarViewModel.scope.collectAsStateWithLifecycle()
|
||||
val currentSource by searchBarViewModel.source.collectAsStateWithLifecycle()
|
||||
|
||||
Reference in New Issue
Block a user