Skip to content

Commit

Permalink
Merge pull request #1701 from synapsecns/unpause-harmony
Browse files Browse the repository at this point in the history
Unpause harmony
  • Loading branch information
trajan0x authored Dec 22, 2023
2 parents c19a97c + 3d29e81 commit e0b947a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ export const BridgeTransactionButton = ({
PAUSED_TO_CHAIN_IDS.includes(toChainId)
) {
buttonProperties = {
label: `Bridge unavailable due to network issues`,
label: `Bridge unavailable`,
onClick: null,
}
} else if (!fromToken) {
Expand Down
4 changes: 2 additions & 2 deletions packages/synapse-interface/constants/chains/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ export const CHAIN_IDS = getids() // used to be ids
export const CHAINS_BY_ID = getChainsByID()
export const ORDERED_CHAINS_BY_ID = CHAINS_ARR.map((chain) => String(chain.id))

export const PAUSED_FROM_CHAIN_IDS = [all.HARMONY.id]
export const PAUSED_TO_CHAIN_IDS = [all.DOGE.id, all.HARMONY.id]
export const PAUSED_FROM_CHAIN_IDS = []
export const PAUSED_TO_CHAIN_IDS = [all.DOGE.id]

export const ChainId = {
ETH: 1,
Expand Down

0 comments on commit e0b947a

Please sign in to comment.