From 22a6d6ee3bcbec3cc77afe687fec7db49a972aa7 Mon Sep 17 00:00:00 2001 From: Bailey Pumfleet Date: Wed, 8 Dec 2021 19:28:36 +0000 Subject: [PATCH] Swap availability and booking icons (#1276) --- components/Shell.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/Shell.tsx b/components/Shell.tsx index 61eef5fb94..e17920402d 100644 --- a/components/Shell.tsx +++ b/components/Shell.tsx @@ -136,13 +136,13 @@ export default function Shell(props: { { name: t("bookings"), href: "/bookings/upcoming", - icon: ClockIcon, + icon: CalendarIcon, current: router.asPath.startsWith("/bookings"), }, { name: t("availability"), href: "/availability", - icon: CalendarIcon, + icon: ClockIcon, current: router.asPath.startsWith("/availability"), }, {