From b1c4887ba8df23d28fba619d685c665aa5cbd3a2 Mon Sep 17 00:00:00 2001 From: Mathias Schopmans Date: Thu, 7 Mar 2024 13:50:45 +0100 Subject: [PATCH] chore: hide search from navigation --- src/components/Navigation/Navigation.tsx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/components/Navigation/Navigation.tsx b/src/components/Navigation/Navigation.tsx index 11cd14b..8f93919 100644 --- a/src/components/Navigation/Navigation.tsx +++ b/src/components/Navigation/Navigation.tsx @@ -4,8 +4,7 @@ import styles from "./Navigation.module.css"; import IconOverview from "@/components/Icons/Overview"; import IconQuestion from "@/components/Icons/Question"; -import IconSearch from "@/components/Icons/Search"; -import { getAppName, getLabel } from "@/lib/data"; +import { getLabel } from "@/lib/data"; export function Navigation() { return ( @@ -23,12 +22,14 @@ export function Navigation() { {getLabel("pageOverview")} + {/*
  • {getLabel("pageSearch")}
  • + */} );