Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/hot-mails-rhyme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@smartcontractkit/operator-ui': patch
---

Increase limit for number of chains in FMS
1 change: 1 addition & 0 deletions src/screens/FeedsManager/EditSupportedChainDialog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ export const EditSupportedChainDialog = ({
const formRef = React.useRef()

const { data: chainData } = useChainsQuery({
variables: { limit: 999 },
fetchPolicy: 'network-only',
})

Expand Down
1 change: 1 addition & 0 deletions src/screens/FeedsManager/NewSupportedChainDialog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ export const NewSupportedChainDialog = ({ onClose, open, onSubmit }: Props) => {
const formRef = React.useRef()

const { data: chainData } = useChainsQuery({
variables: { limit: 999 },
fetchPolicy: 'network-only',
})

Expand Down
Loading