diff --git a/src/modules/otus/components/TaxaInfo.vue b/src/modules/otus/components/TaxaInfo.vue
index c961eb3..ace3efd 100644
--- a/src/modules/otus/components/TaxaInfo.vue
+++ b/src/modules/otus/components/TaxaInfo.vue
@@ -5,11 +5,6 @@
-
@@ -40,16 +35,4 @@ const taxonNameString = computed(() =>
? props.taxon.cached_html + ' ' + (props.taxon.cached_author_year || '')
: props.taxon.original_combination
)
-const status = computed(() =>
- props.taxon.cached_is_valid
- ? '✓'
- : '✕'
-)
-
-const statusStyle = computed(() =>
- props.taxon.cached_is_valid
- ? 'text-green-600'
- : 'text-red-600'
-)
-