Merge branch 'eslint'

This commit is contained in:
JK-le-dev 2025-10-18 18:23:17 -05:00
commit e9e5804ea1
4 changed files with 24 additions and 6 deletions

View file

@ -18,7 +18,7 @@ export default function ChatHeader({ title = "AI Assistant" }) {
setMessages([]);
}
};
return (
<header className="flex items-center justify-between px-4 py-3 bg-gradient-to-r from-slate-800 to-slate-900 text-white">
<div className="flex items-center gap-3">
@ -34,7 +34,6 @@ export default function ChatHeader({ title = "AI Assistant" }) {
<ActionButton type="add" onClick={handleNewChat}></ActionButton>
<ActionButton type="delete" onClick={handleDeleteChat}></ActionButton>
</div>
</header>
);
}