Skip to content

Commit

Permalink
Remove messenger icon
Browse files Browse the repository at this point in the history
  • Loading branch information
lyncasterc committed Mar 29, 2024
1 parent ffa1d95 commit 834d263
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 24 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import { Button, Container, UnstyledButton } from '@mantine/core';
import {
IconHome,
IconSquarePlus,
IconBrandMessenger,
IconHeart,
IconSearch,
} from '@tabler/icons-react';
Expand Down Expand Up @@ -105,16 +104,6 @@ function DesktopNavbar({ displayOnMobile, notifications }: DesktopNavbarProps) {

<PostImageFileInput />

<Link
to="/"
>
<IconBrandMessenger
size={30}
strokeWidth={2}
color="black"
/>
</Link>

<Link
to="/notifications"
>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
import { Group } from '@mantine/core';
import { IconBrandMessenger } from '@tabler/icons-react';
import { Link } from 'react-router-dom';
import baseStyles from '../mobile-nav-styles';
import NavbarBrand from '../NavbarBrand/NavbarBrand';

Expand All @@ -9,21 +7,11 @@ function MobileHomeNavBar() {

return (
<Group
position="apart"
position="left"
className={`${baseClasses.baseStyles}`}
data-testid="home-nav"
>
<NavbarBrand />

<Link
to="/"
>
<IconBrandMessenger
size={30}
strokeWidth={1.5}
color="black"
/>
</Link>
</Group>
);
}
Expand Down

0 comments on commit 834d263

Please sign in to comment.