Skip to content

Commit f3482ca

Browse files
committed
fix: build - removing BotMessageSquareIcon
1 parent 636891b commit f3482ca

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

apps/masterbots.ai/components/routes/browse/browse-chatbot-desktop-details.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { Button } from '@/components/ui/button'
33
import { Card, CardContent, CardFooter, CardHeader } from '@/components/ui/card'
44
import { cn, numberShortener } from '@/lib/utils'
55
import type { BrowseChatbotLayoutProps } from '@/types/types'
6-
import { Bot, BotMessageSquareIcon, ChevronLeft, MessageSquarePlusIcon, Users } from 'lucide-react'
6+
import { Bot, MessageSquareIcon, ChevronLeft, MessageSquarePlusIcon, Users } from 'lucide-react'
77
import Image from 'next/image'
88
import Link from 'next/link'
99

@@ -109,7 +109,7 @@ export function BrowseChatbotDesktopDetails({
109109
<CardFooter className="flex flex-col space-y-4">
110110
<div className="flex items-center w-full">
111111
<div className="flex items-center gap-2 text-zinc-950 dark:text-gray-300">
112-
<BotMessageSquareIcon className="size-4" />
112+
<MessageSquareIcon className="size-4" />
113113
<span>
114114
Threads:{' '}
115115
<span className="text-gray-400">

apps/masterbots.ai/components/routes/browse/browse-chatbot-mobile-details.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { cn, numberShortener } from '@/lib/utils'
66
import type { BrowseChatbotLayoutProps } from '@/types/types'
77
import {
88
Bot,
9-
BotMessageSquareIcon,
9+
MessageSquareIcon,
1010
ChevronLeft,
1111
MessageSquarePlusIcon,
1212
Users
@@ -43,7 +43,7 @@ export function BrowseChatbotMobileDetails({
4343
{chatbot.name}
4444
</h1>
4545
<div className="flex items-center gap-2">
46-
<BotMessageSquareIcon className="size-4" />
46+
<MessageSquareIcon className="size-4" />
4747
<span className="text-zinc-950 dark:text-gray-300">
4848
Threads: {chatbot.threads.length}
4949
</span>
@@ -65,7 +65,7 @@ export function BrowseChatbotMobileDetails({
6565
alt={`${chatbot.name} avatar`}
6666
width={74}
6767
height={74}
68-
className="object-cover size-full p-0 m-0"
68+
className="object-cover p-0 m-0 size-full"
6969
/>
7070
</div>
7171
</div>

0 commit comments

Comments
 (0)