update missing logo icon (#1070)

This commit is contained in:
Ian Lapham 2020-08-27 20:49:28 -04:00 committed by GitHub
parent 9ddedd8dab
commit 4644cd7b0a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -1,5 +1,5 @@
import React, { useState } from 'react'
import { AlertTriangle } from 'react-feather'
import { HelpCircle } from 'react-feather'
import { ImageProps } from 'rebass'
const BAD_SRCS: { [tokenAddress: string]: true } = {}
@ -30,5 +30,5 @@ export default function Logo({ srcs, alt, ...rest }: LogoProps) {
)
}
return <AlertTriangle {...rest} />
return <HelpCircle {...rest} />
}