Skip to content

Commit af121ff

Browse files
committed
cleaned up chat empty state text, reduced sidebar project name size
1 parent fc7b2b2 commit af121ff

2 files changed

Lines changed: 3 additions & 4 deletions

File tree

apps/desktop-ui/components/chat/chat-empty-state.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export function ChatEmptyState() {
99
return (
1010
<div className="flex flex-col items-center text-center">
1111
<h1 className="text-3xl font-medium text-linear-text tracking-tight">
12-
<span className="text-linear-text-tertiary">let&apos;s work on</span>{" "}
12+
<span className="text-linear-text-tertiary">brainstorm</span>{" "}
1313
<span className="text-linear-accent">{projectName}</span>
1414
</h1>
1515
</div>

apps/desktop-ui/components/layout/sidebar.tsx

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import { apiFetch } from "@/lib/api"
2121
import { getApiUrl, getAuthToken } from "@/lib/api/client"
2222

2323
import { Popover, PopoverContent, PopoverTrigger } from "@/components/ui/popover"
24-
import { NotificationBell } from "@/components/notifications/notification-bell"
24+
2525

2626
import { Avatar, AvatarFallback, AvatarImage } from "@/components/ui/avatar"
2727
import {
@@ -163,7 +163,7 @@ function ProjectSection({ project, pathname, searchParams, isActive, onSelect }:
163163
)}
164164
>
165165
<Hexagon className="w-3.5 h-3.5 flex-shrink-0" />
166-
<span className="truncate text-base font-medium">{project.name}</span>
166+
<span className="truncate text-sm font-medium">{project.name}</span>
167167
</button>
168168
</div>
169169

@@ -333,7 +333,6 @@ export function Sidebar({ open, onClose, width }: SidebarProps) {
333333
<span className="text-sm font-semibold text-linear-text">OpenLinear</span>
334334
</div>
335335
<div className="flex items-center gap-1">
336-
<NotificationBell />
337336
<button
338337
onClick={onClose}
339338
className="w-6 h-6 rounded flex items-center justify-center text-linear-text-tertiary hover:text-linear-text hover:bg-linear-bg-tertiary transition-colors"

0 commit comments

Comments
 (0)