Skip to content

Commit

Permalink
logo url bug
Browse files Browse the repository at this point in the history
  • Loading branch information
kartik-gupta-ij committed Oct 12, 2023
1 parent 3b51bbd commit c28c053
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/components/Header/PrimaryHeader.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ import { HEADER_HEIGHT } from '@/constants/theme';
import type { HeaderProps as MantineHeaderProps } from '@mantine/core';
import { Box, Button, Image, Header as MantineHeader, Tooltip } from '@mantine/core';
import { FC } from 'react';
import { Link } from 'react-router-dom';
import { useHeaderStyles } from './styles';

type PrimaryHeaderProps = Omit<MantineHeaderProps, 'children' | 'height' | 'className'>;
Expand All @@ -16,9 +15,9 @@ const PrimaryHeader: FC<PrimaryHeaderProps> = (props) => {
return (
<MantineHeader {...props} className={container} height={HEADER_HEIGHT} p={0} withBorder>
<Box className={logoContainer}>
<Link to={HOME_ROUTE}>
<a href={HOME_ROUTE}>
<Image className={imageSty} src={logoInvert} height={32} alt="Parseable Logo" />
</Link>
</a>
</Box>
<Box className={navContainer}>
<Box
Expand Down

0 comments on commit c28c053

Please sign in to comment.