From 6d6ea559da921cd38810637420900c84fa938260 Mon Sep 17 00:00:00 2001 From: Margaret Ma Date: Fri, 21 Jun 2024 10:10:29 -0400 Subject: [PATCH] remove chaintype filter on bundleid --- .changeset/dirty-planes-promise.md | 5 +++++ src/components/Form/ChainConfigurationForm.tsx | 15 +++++---------- 2 files changed, 10 insertions(+), 10 deletions(-) create mode 100644 .changeset/dirty-planes-promise.md diff --git a/.changeset/dirty-planes-promise.md b/.changeset/dirty-planes-promise.md new file mode 100644 index 0000000..a5d8d27 --- /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 aa39490..a7f520c 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) => ( - - {key.id} - - ))} + {ocr2Keys.map((key) => ( + + {key.id} + + ))}