From 906d7d34da23525903beb05505997c6c01d8d1f8 Mon Sep 17 00:00:00 2001 From: Jeremy Date: Fri, 6 Dec 2024 17:40:41 +0300 Subject: [PATCH] chore: update icons after rename (#598) --- components/sidebar-history.tsx | 9 +++++---- components/visibility-selector.tsx | 4 ++-- 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/components/sidebar-history.tsx b/components/sidebar-history.tsx index a18328d..4f41a0b 100644 --- a/components/sidebar-history.tsx +++ b/components/sidebar-history.tsx @@ -9,8 +9,7 @@ import { toast } from 'sonner'; import useSWR from 'swr'; import { - CheckCirclFillIcon, - EyeIcon, + CheckCircleFillIcon, GlobeIcon, LockIcon, MoreHorizontalIcon, @@ -112,7 +111,9 @@ const PureChatItem = ({ Private - {visibilityType === 'private' ? : null} + {visibilityType === 'private' ? ( + + ) : null} Public - {visibilityType === 'public' ? : null} + {visibilityType === 'public' ? : null} diff --git a/components/visibility-selector.tsx b/components/visibility-selector.tsx index d357752..42fd94a 100644 --- a/components/visibility-selector.tsx +++ b/components/visibility-selector.tsx @@ -11,7 +11,7 @@ import { import { cn } from '@/lib/utils'; import { - CheckCirclFillIcon, + CheckCircleFillIcon, ChevronDownIcon, GlobeIcon, LockIcon, @@ -99,7 +99,7 @@ export function VisibilitySelector({ )}
- +
))}