diff --git a/.changeset/dirty-planes-promise.md b/.changeset/dirty-planes-promise.md
new file mode 100644
index 00000000..a5d8d27c
--- /dev/null
+++ b/.changeset/dirty-planes-promise.md
@@ -0,0 +1,5 @@
+---
+'@smartcontractkit/operator-ui': patch
+---
+
+remove filter for chaintype for bundleids in feeds manager
diff --git a/src/components/Form/ChainConfigurationForm.tsx b/src/components/Form/ChainConfigurationForm.tsx
index aa39490d..a7f520cf 100644
--- a/src/components/Form/ChainConfigurationForm.tsx
+++ b/src/components/Form/ChainConfigurationForm.tsx
@@ -516,16 +516,11 @@ export const ChainConfigurationForm = withStyles(styles)(
'ocr2KeyBundleID-helper-text',
}}
>
- {ocr2Keys
- .filter(
- (key) =>
- values.chainType === key.chainType,
- )
- .map((key) => (
-
- ))}
+ {ocr2Keys.map((key) => (
+
+ ))}