Skip to content

Commit

Permalink
remove chaintype filter on bundleid (#79)
Browse files Browse the repository at this point in the history
  • Loading branch information
eutopian authored Jun 21, 2024
1 parent 7e6a14f commit a8d3bf9
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
5 changes: 5 additions & 0 deletions .changeset/dirty-planes-promise.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@smartcontractkit/operator-ui': patch
---

remove filter for chaintype for bundleids in feeds manager
15 changes: 5 additions & 10 deletions src/components/Form/ChainConfigurationForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -516,16 +516,11 @@ export const ChainConfigurationForm = withStyles(styles)(
'ocr2KeyBundleID-helper-text',
}}
>
{ocr2Keys
.filter(
(key) =>
values.chainType === key.chainType,
)
.map((key) => (
<MenuItem key={key.id} value={key.id}>
{key.id}
</MenuItem>
))}
{ocr2Keys.map((key) => (
<MenuItem key={key.id} value={key.id}>
{key.id}
</MenuItem>
))}
</Field>
</Grid>

Expand Down

0 comments on commit a8d3bf9

Please sign in to comment.