style: 完成所有文件的lint

This commit is contained in:
claude-code-best
2026-05-01 21:39:30 +08:00
parent d136872cc9
commit 6182015005
1333 changed files with 68255 additions and 77882 deletions

View File

@@ -1,9 +1,4 @@
import {
Dialog,
DialogContent,
DialogHeader,
DialogTitle,
} from "../../components/ui/dialog";
import { Dialog, DialogContent, DialogHeader, DialogTitle } from '../../components/ui/dialog';
interface TaskPanelProps {
onClose: () => void;
@@ -11,7 +6,12 @@ interface TaskPanelProps {
export function TaskPanel({ onClose }: TaskPanelProps) {
return (
<Dialog open={true} onOpenChange={(o) => { if (!o) onClose(); }}>
<Dialog
open={true}
onOpenChange={o => {
if (!o) onClose();
}}
>
<DialogContent
showCloseButton={false}
className="fixed inset-y-0 right-0 top-auto left-auto translate-x-0 translate-y-0 w-full sm:w-80 h-full max-w-none max-h-none rounded-none border-l border-border bg-surface-1 p-4 sm:max-w-sm"