Skip to content

Commit

Permalink
Fix/reported gateway issues (#1092)
Browse files Browse the repository at this point in the history
* Fix: Icons on bridge success modal height fixes.
* Fix: classic bridge estimated time update
  • Loading branch information
sk-enya authored Aug 9, 2023
1 parent 0a4f4e5 commit f5717f3
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,11 @@ const Fee = (props: Props) => {

const estimateTime = () => {
if (bridgeType === BRIDGE_TYPE.CLASSIC) {
return '7 days'
if (layer === LAYER.L1) {
return '13 ~ 14mins.'
} else {
return '7 days'
}
} else {
if (layer === LAYER.L1) {
return '1 ~ 5min.'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,12 @@ export const LayerNames = styled.div`
align-items: center;
justify-content: flex-start;
gap: 8px;
svg,
img {
height: 30px;
width: 30px;
}
`

export const ConfirmActionButton = styled(Button)`
Expand Down

0 comments on commit f5717f3

Please sign in to comment.