chore: update icons after rename (#598)
This commit is contained in:
parent
fd4ef08dad
commit
906d7d34da
2 changed files with 7 additions and 6 deletions
|
|
@ -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 = ({
|
|||
<LockIcon size={12} />
|
||||
<span>Private</span>
|
||||
</div>
|
||||
{visibilityType === 'private' ? <CheckCirclFillIcon /> : null}
|
||||
{visibilityType === 'private' ? (
|
||||
<CheckCircleFillIcon />
|
||||
) : null}
|
||||
</DropdownMenuItem>
|
||||
<DropdownMenuItem
|
||||
className="cursor-pointer flex-row justify-between"
|
||||
|
|
@ -124,7 +125,7 @@ const PureChatItem = ({
|
|||
<GlobeIcon />
|
||||
<span>Public</span>
|
||||
</div>
|
||||
{visibilityType === 'public' ? <CheckCirclFillIcon /> : null}
|
||||
{visibilityType === 'public' ? <CheckCircleFillIcon /> : null}
|
||||
</DropdownMenuItem>
|
||||
</DropdownMenuSubContent>
|
||||
</DropdownMenuPortal>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue