Skip to content

Commit

Permalink
fix: wrong conditional rendering
Browse files Browse the repository at this point in the history
  • Loading branch information
Mgetz10 committed Nov 22, 2024
1 parent a940983 commit 8c25736
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -582,7 +582,7 @@ const UsaMap = () => {
<div>
<div className='d-flex mt-2'>
<h5>{general.territoriesLabel}</h5>
{'data' === general.type && logo && ('us' !== geoType || 'us-geocode' === general.type) && (
{'data' === general.type && logo && (
<img src={logo} alt='' className='map-logo' style={{ maxWidth: '50px' }} />
)}
</div>
Expand Down

0 comments on commit 8c25736

Please sign in to comment.