We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2995aac commit a0d87c5Copy full SHA for a0d87c5
lib/components/util/operator-logo.tsx
@@ -24,8 +24,9 @@ type Props = {
24
25
const OperatorLogo = ({ alt, operator, styled }: Props): JSX.Element | null => {
26
if (!operator?.logo) return null
27
- if (styled)
+ if (styled) {
28
return <StyledOperatorImg alt={alt || operator.name} src={operator.logo} />
29
+ }
30
31
return <OperatorImg alt={alt || operator.name} src={operator.logo} />
32
}
0 commit comments