Skip to content

Commit 834d263

Browse files
committed
Remove messenger icon
1 parent ffa1d95 commit 834d263

File tree

2 files changed

+1
-24
lines changed

2 files changed

+1
-24
lines changed

frontend/src/common/components/Navbars/DesktopNavbar/DesktopNavbar.tsx

-11
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ import { Button, Container, UnstyledButton } from '@mantine/core';
22
import {
33
IconHome,
44
IconSquarePlus,
5-
IconBrandMessenger,
65
IconHeart,
76
IconSearch,
87
} from '@tabler/icons-react';
@@ -105,16 +104,6 @@ function DesktopNavbar({ displayOnMobile, notifications }: DesktopNavbarProps) {
105104

106105
<PostImageFileInput />
107106

108-
<Link
109-
to="/"
110-
>
111-
<IconBrandMessenger
112-
size={30}
113-
strokeWidth={2}
114-
color="black"
115-
/>
116-
</Link>
117-
118107
<Link
119108
to="/notifications"
120109
>

frontend/src/common/components/Navbars/MobileHomeNavbar/MobileHomeNavbar.tsx

+1-13
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
import { Group } from '@mantine/core';
2-
import { IconBrandMessenger } from '@tabler/icons-react';
3-
import { Link } from 'react-router-dom';
42
import baseStyles from '../mobile-nav-styles';
53
import NavbarBrand from '../NavbarBrand/NavbarBrand';
64

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

108
return (
119
<Group
12-
position="apart"
10+
position="left"
1311
className={`${baseClasses.baseStyles}`}
1412
data-testid="home-nav"
1513
>
1614
<NavbarBrand />
17-
18-
<Link
19-
to="/"
20-
>
21-
<IconBrandMessenger
22-
size={30}
23-
strokeWidth={1.5}
24-
color="black"
25-
/>
26-
</Link>
2715
</Group>
2816
);
2917
}

0 commit comments

Comments
 (0)