Skip to content

Commit

Permalink
- fix: create ai chat icon (#309)
Browse files Browse the repository at this point in the history
  • Loading branch information
agallardol authored Jun 6, 2024
1 parent af426f1 commit 0fdbc46
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion apps/shinkai-desktop/src/pages/chat/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ import {
ActiveIcon,
ArchiveIcon,
ChatBubbleIcon,
CreateAIIcon,
JobBubbleIcon,
} from '@shinkai_network/shinkai-ui/assets';
import { cn } from '@shinkai_network/shinkai-ui/utils';
Expand Down Expand Up @@ -359,7 +360,7 @@ const ChatLayout = () => {
size="icon"
variant="ghost"
>
<PlusIcon className="h-4 w-4" />
<CreateAIIcon className="h-4 w-4 shrink-0" />
<span className="sr-only">Create AI Chat</span>
</Button>
</TooltipTrigger>
Expand Down
3 changes: 2 additions & 1 deletion apps/shinkai-desktop/src/pages/layout/main-layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ import {
AISearchContentIcon,
AiTasksIcon,
BrowseSubscriptionIcon,
CreateAIIcon,
FilesIcon,
InboxIcon,
MySubscriptionsIcon,
Expand Down Expand Up @@ -351,7 +352,7 @@ export function MainNav() {
onClick={() => navigate('/create-job')}
whileHover={{ scale: !sidebarExpanded ? 1.05 : 1 }}
>
<PlusIcon className="h-5 w-5 shrink-0" />
<CreateAIIcon className="h-5 w-5 shrink-0" />
<AnimatePresence>
{sidebarExpanded && (
<motion.span
Expand Down

0 comments on commit 0fdbc46

Please sign in to comment.