fix type for `AddressInfo`
This commit is contained in:
parent
a8b8284bf4
commit
8bdfdb906c
|
@ -42,7 +42,7 @@ interface Props {
|
||||||
ethBalance?: number | string
|
ethBalance?: number | string
|
||||||
}
|
}
|
||||||
|
|
||||||
const AddressInfo: React.FC<Props> = ({ ethBalance, safeAddress, safeName }: Props) => {
|
const AddressInfo = ({ ethBalance, safeAddress, safeName }: Props): JSX.Element => {
|
||||||
return (
|
return (
|
||||||
<Wrapper>
|
<Wrapper>
|
||||||
<div className="icon-section">
|
<div className="icon-section">
|
||||||
|
|
Loading…
Reference in New Issue