From 8f30ef38d95931f6c466f5ea2b1cb3058faad8d3 Mon Sep 17 00:00:00 2001 From: mantikoros Date: Sat, 17 Sep 2022 18:40:45 -0500 Subject: [PATCH] fix imports --- web/components/nav/bottom-nav-bar.tsx | 3 ++- web/components/nav/group-nav-bar.tsx | 2 +- web/components/nav/group-sidebar.tsx | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/web/components/nav/bottom-nav-bar.tsx b/web/components/nav/bottom-nav-bar.tsx index aeb5a2bc..f906b21d 100644 --- a/web/components/nav/bottom-nav-bar.tsx +++ b/web/components/nav/bottom-nav-bar.tsx @@ -8,7 +8,8 @@ import { } from '@heroicons/react/outline' import { Transition, Dialog } from '@headlessui/react' import { useState, Fragment } from 'react' -import Sidebar, { Item } from './sidebar' +import Sidebar from './sidebar' +import { Item } from './sidebar-item' import { useUser } from 'web/hooks/use-user' import { formatMoney } from 'common/util/format' import { Avatar } from '../avatar' diff --git a/web/components/nav/group-nav-bar.tsx b/web/components/nav/group-nav-bar.tsx index 986f35a1..8c20fee9 100644 --- a/web/components/nav/group-nav-bar.tsx +++ b/web/components/nav/group-nav-bar.tsx @@ -1,5 +1,5 @@ import { ClipboardIcon, HomeIcon } from '@heroicons/react/outline' -import { Item } from './sidebar' +import { Item } from './sidebar-item' import clsx from 'clsx' import { trackCallback } from 'web/lib/service/analytics' diff --git a/web/components/nav/group-sidebar.tsx b/web/components/nav/group-sidebar.tsx index 12f9e7a9..a68064e0 100644 --- a/web/components/nav/group-sidebar.tsx +++ b/web/components/nav/group-sidebar.tsx @@ -7,7 +7,7 @@ import React from 'react' import TrophyIcon from 'web/lib/icons/trophy-icon' import { SignInButton } from '../sign-in-button' import NotificationsIcon from '../notifications-icon' -import { SidebarItem } from './sidebar' +import { SidebarItem } from './sidebar-item' import { buildArray } from 'common/util/array' import { User } from 'common/user' import { Row } from '../layout/row'