diff --git a/app/src/main/java/eu/kanade/presentation/browse/ExtensionsScreen.kt b/app/src/main/java/eu/kanade/presentation/browse/ExtensionsScreen.kt index 7e1d37698..72cc8cc53 100644 --- a/app/src/main/java/eu/kanade/presentation/browse/ExtensionsScreen.kt +++ b/app/src/main/java/eu/kanade/presentation/browse/ExtensionsScreen.kt @@ -386,7 +386,11 @@ fun ExtensionItemActions( } if (isIdle.not()) { IconButton(onClick = { onClickItemCancel(extension) }) { - Icon(Icons.Default.Close, "") + Icon( + imageVector = Icons.Default.Close, + contentDescription = "", + tint = MaterialTheme.colorScheme.onBackground, + ) } } }