diff --git a/.changeset/forty-days-tell.md b/.changeset/forty-days-tell.md
new file mode 100644
index 0000000000..98aed740b8
--- /dev/null
+++ b/.changeset/forty-days-tell.md
@@ -0,0 +1,5 @@
+---
+'@backstage/plugin-catalog-react': patch
+---
+
+Fixed bug in catalog filters where you could not click on the text to select a value.
diff --git a/plugins/catalog-react/src/components/EntityLifecyclePicker/EntityLifecyclePicker.tsx b/plugins/catalog-react/src/components/EntityLifecyclePicker/EntityLifecyclePicker.tsx
index 29002564ca..5d1ea0a96c 100644
--- a/plugins/catalog-react/src/components/EntityLifecyclePicker/EntityLifecyclePicker.tsx
+++ b/plugins/catalog-react/src/components/EntityLifecyclePicker/EntityLifecyclePicker.tsx
@@ -18,7 +18,6 @@ import { Entity } from '@backstage/catalog-model';
import {
Box,
Checkbox,
- FormControlLabel,
makeStyles,
TextField,
Typography,
@@ -112,16 +111,14 @@ export const EntityLifecyclePicker = (props: { initialFilter?: string[] }) => {
setSelectedLifecycles(value)
}
renderOption={(option, { selected }) => (
-