Skip to content

Commit

Permalink
minor changes
Browse files Browse the repository at this point in the history
  • Loading branch information
norachams committed May 17, 2024
1 parent 8c18536 commit 5677575
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 8 deletions.
8 changes: 2 additions & 6 deletions src/components/Navbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -52,11 +52,6 @@ export const Navbar = () => {
label: "Perks",
Icon: RxStar,
},
[paths.location]: {
label: "Location",
Icon: FiMapPin,
externalLink: "https://www.google.com/maps/place/Your+Location/",
},
};

const location = useLocation();
Expand Down Expand Up @@ -194,7 +189,7 @@ export const Navbar = () => {
<ul className="flex flex-col items-start justify-start divide-y divide-charcoalBlack">
{currentUser && renderNavItems(true)}
<a
href="https://discord.com/invite/GxwvFEn9TB"
href="https://maps.app.goo.gl/Fxic5XJBzZjHP4Yt5"
target="_blank"
rel="noopener noreferrer"
className="w-full"
Expand All @@ -203,6 +198,7 @@ export const Navbar = () => {
Location
</li>
</a>
{currentUser && renderNavItems(true)}
<a
href="https://discord.com/invite/GxwvFEn9TB"
target="_blank"
Expand Down
2 changes: 0 additions & 2 deletions src/providers/routes.provider.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@ interface PathObject {
myApp: string;
ticket: string;
perks: string;
location: string;
}

interface Title {
Expand Down Expand Up @@ -85,7 +84,6 @@ const paths: PathObject = {
myApp: "/my-application",
ticket: "/ticket/:ticketId",
perks: "/perks",
location: "/location"
};

const titles: Record<string, Title> = {
Expand Down

0 comments on commit 5677575

Please sign in to comment.