chore: linting

This commit is contained in:
DESKTOP-RTLN3BA\$punk 2026-03-11 16:44:25 -07:00
parent b9f8779461
commit b81619da7e
3 changed files with 11 additions and 17 deletions

View file

@ -222,9 +222,7 @@ const ThreadWelcome: FC = () => {
<div className="aui-thread-welcome-root mx-auto flex w-full max-w-(--thread-max-width) grow flex-col items-center px-4 relative">
{/* Greeting positioned above the composer */}
<div className="aui-thread-welcome-message absolute bottom-[calc(50%+5rem)] left-0 right-0 flex flex-col items-center text-center">
<h1 className="aui-thread-welcome-message-inner text-3xl md:text-5xl">
{greeting}
</h1>
<h1 className="aui-thread-welcome-message-inner text-3xl md:text-5xl">{greeting}</h1>
</div>
{/* Composer - top edge fixed, expands downward only */}
<div className="w-full flex items-start justify-center absolute top-[calc(50%-3.5rem)] left-0 right-0">

View file

@ -1,11 +1,7 @@
"use client";
import { IconBrandGithub } from "@tabler/icons-react";
import {
motion,
useMotionValue,
useSpring,
} from "motion/react";
import { motion, useMotionValue, useSpring } from "motion/react";
import * as React from "react";
import { cn } from "@/lib/utils";

View file

@ -315,15 +315,15 @@ export function LayoutShell({
</div>
</main>
{/* Right panel — tabbed Sources/Report (desktop only) */}
{documentsPanel && (
<RightPanel
documentsPanel={{
open: documentsPanel.open,
onOpenChange: documentsPanel.onOpenChange,
}}
/>
)}
{/* Right panel — tabbed Sources/Report (desktop only) */}
{documentsPanel && (
<RightPanel
documentsPanel={{
open: documentsPanel.open,
onOpenChange: documentsPanel.onOpenChange,
}}
/>
)}
{/* Inbox Sidebar - slide-out panel */}
{inbox && (