Skip to content

Commit

Permalink
fix: update index.tsx
Browse files Browse the repository at this point in the history
  • Loading branch information
biratdatta authored Jun 26, 2024
1 parent d2297e9 commit 7290b76
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions src/components/navbar/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ const Navbar: React.FC = () => {
>
{showCenterLogo && (
<div>
<Image
<img
data-testid="navbar-center-img"
src={centerLogoSrc}
alt="Center Logo"
Expand All @@ -219,23 +219,24 @@ const Navbar: React.FC = () => {
)}
</div>

<
<div data-testid="navbar-right-logos">
{showRightLogo1 && (
<Image
<img
src={rightLogo1Src}
alt={`Right Logo 1`}
style={{ maxHeight: '60px' }}
/>
)}
{showRightLogo2 && (
<Image
<img
src={rightLogo2Src}
alt={`Right Logo 2`}
style={{ maxHeight: '60px' }}
/>
)}
{showRightLogo3 && (
<Image
<img
src={rightLogo3Src}
alt={`Right Logo 3`}
style={{ maxHeight: '60px' }}
Expand Down

0 comments on commit 7290b76

Please sign in to comment.