Skip to content

Commit

Permalink
Add comments
Browse files Browse the repository at this point in the history
  • Loading branch information
katspaugh committed Oct 23, 2023
1 parent ddcdf5e commit 48a7a76
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/components/walletconnect/WcConnectionState/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ const WcConnectionState = ({ metadata, isDelete }: { metadata?: CoreTypes.Metada
<SafeAppIconCard src={icon} width={28} height={28} alt={`${name} logo`} />
</div>
<Typography variant="h5" mt={3}>
{isDelete ? `${name} has disconnected` : `${name} successfully connected!`}
{isDelete ? `${name} disconnected` : `${name} successfully connected!`}
</Typography>
</div>
)
Expand Down
4 changes: 2 additions & 2 deletions src/services/walletconnect/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export const SAFE_COMPATIBLE_METHODS = [
'eth_getLogs',
'eth_gasPrice',
'wallet_switchEthereumChain',
'safe_setSettings', // TODO: support it
'safe_setSettings',
]

export const SAFE_WALLET_METADATA = {
Expand All @@ -48,7 +48,7 @@ export const BlockedBridges = [

// Bridges that initially select the same address on the destination chain but allow changing it
export const WarnedBridges = [
'across.to',
'across.to', // doesn't send their URL correctly, so it won't be detected
'app.allbridge.io',
'core.allbridge.io',
'bungee.exchange',
Expand Down

0 comments on commit 48a7a76

Please sign in to comment.