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
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,11 @@ export const createStyles = (params: { theme: Theme }) => {
alignItems: 'center',
justifyContent: 'center',
backgroundColor: theme.colors.background.default,
paddingTop: 12,
},
button: {
width: '100%',
},
bottomSection: {
flex: 1,
justifyContent: 'flex-end',
},
arrowContainer: {
position: 'relative',
alignItems: 'center',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -910,6 +910,7 @@ exports[`BridgeView Bottom Content blurs input when opening QuoteExpiredModal 1`
"justifyContent": "center",
"paddingBottom": 24,
"paddingHorizontal": 16,
"paddingTop": 12,
"width": "100%",
},
]
Expand Down Expand Up @@ -1857,6 +1858,7 @@ exports[`BridgeView renders 1`] = `
"justifyContent": "center",
"paddingBottom": 24,
"paddingHorizontal": 16,
"paddingTop": 12,
"width": "100%",
},
]
Expand Down
6 changes: 2 additions & 4 deletions app/components/UI/Bridge/Views/BridgeView/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -367,8 +367,7 @@ const BridgeView = () => {
tokenBalance={latestSourceBalance?.displayBalance}
networkImageSource={
sourceToken?.chainId
?
getNetworkImageSource({
? getNetworkImageSource({
chainId: sourceToken?.chainId,
})
: undefined
Expand All @@ -395,8 +394,7 @@ const BridgeView = () => {
token={destToken}
networkImageSource={
destToken
?
getNetworkImageSource({ chainId: destToken?.chainId })
? getNetworkImageSource({ chainId: destToken?.chainId })
: undefined
}
testID="dest-token-area"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,9 @@ const createStyles = ({ colors }: Theme) =>
alignItems: 'center',
gap: 4,
},
disclaimerText: {
textAlign: 'center',
},
});

export default createStyles;
Loading
Loading