Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion frontend/src/app/dashboard/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
}

export default function DashboardPage() {
const { user, loading, initialized } = useAuth();

Check warning on line 59 in frontend/src/app/dashboard/page.tsx

View workflow job for this annotation

GitHub Actions / βš›οΈ Frontend β€” TypeScript & Build

'loading' is assigned a value but never used
const router = useRouter();

const [documents, setDocuments] = useState<DocInfo[]>([]);
Expand Down Expand Up @@ -217,7 +217,8 @@
<ChatSessionSidebar />

{/* ── Center: Chat Panel ──────────────────────────────────── */}
<div className="flex-1 min-w-0 flex flex-col">

<div className="flex-1 min-w-0 w-full flex flex-col overflow-hidden">
<ChatPanel
activeDoc={activeDoc}
onCitationClick={(target) => {
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/components/chat/ChatSessionSidebar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ export default function ChatSessionSidebar() {

<Button
onClick={() => setMobileOpen(true)}
className="fixed bottom-4 left-4 z-30 h-11 w-11 rounded-full shadow-lg md:hidden"
className="fixed bottom-4 left-2 z-30 h-10 w-10 rounded-full shadow-lg md:hidden"
size="icon"
aria-label="Open chat sessions"
aria-controls="mobile-chat-sessions"
Expand Down
Loading