Skip to content
Open
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
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -112,3 +112,6 @@ android/app/src/main/res/mipmap-xxhdpi/ic_launcher_monochrome.png
android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_background.png
android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png
android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_monochrome.png
branch_structure.json
temp_auto_push.bat
temp_interactive_push.bat
2 changes: 1 addition & 1 deletion babel.config.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -1039,11 +1039,14 @@ const ConvertOrCrossChainSendForm = ({ setLoading, setModalHeight, updateSendFor
<Text style={Styles.listItemTableCell}>{item.right}</Text>
)}
left={props => {
const Logo = getCoinLogo(
item.logoid,
item.logoproto,
'dark',
);
let id;
if (item.title.includes('.')) {
const logoId = item?.title?.split('.');
id = logoId[0];
} else {
id = item.logoid;
}
const Logo = getCoinLogo(id, item.logoproto, 'dark');

return (
<View style={{justifyContent: 'center', paddingLeft: 8}}>
Expand Down