possible fix for trade page bug

This commit is contained in:
tjs 2022-12-19 18:30:26 -05:00
parent 4fa2939ef5
commit e5611ecb2a
1 changed files with 1 additions and 1 deletions

View File

@ -66,7 +66,7 @@ const AdvancedTradeForm = () => {
if (!baseSymbol || !mangoTokens.length) return ''
const token =
mangoTokens.find((t) => t.symbol === baseSymbol) ||
mangoTokens.find((t) => t.symbol.includes(baseSymbol))
mangoTokens.find((t) => t.symbol?.includes(baseSymbol))
if (token) {
return token.logoURI
}