Skip to content

Commit

Permalink
removed filter login in transfer page
Browse files Browse the repository at this point in the history
  • Loading branch information
karthikeyan-cere committed Sep 20, 2021
1 parent af95f9e commit 240d9d9
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions src/Components/Pages/TransferPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -382,12 +382,10 @@ const TransferPage = () => {
label="Destination Network"
className={classes.generalInput}
disabled={!homeConfig}
options={destinationChains
.filter((dc) => dc.chainId === 1)
.map((dc) => ({
label: dc.name,
value: dc.chainId,
}))}
options={destinationChains.map((dc) => ({
label: dc.name,
value: dc.chainId,
}))}
onChange={(value) => setDestinationChain(value)}
value={destinationChainConfig?.chainId}
/>
Expand Down

0 comments on commit 240d9d9

Please sign in to comment.