Skip to content

Commit f29c3a4

Browse files
committed
fix: coderabbit suggestions
1 parent 88ee041 commit f29c3a4

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

apps/web/components/chat-input-controls.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ const ChatInputControls = ({
3232
size="icon"
3333
className="transform rounded-[10px] h-8 w-8 focus-visible:ring-1 focus-visible:ring-offset-1"
3434
onClick={handleSendMessage}
35+
aria-label={isGeneratingResponse ? "Stop generating" : "Send message"}
3536
>
3637
{isGeneratingResponse ? <StopCircleIcon /> : <ArrowUpIcon />}
3738
</Button>

apps/web/components/chat-input.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ const ChatInput = ({ chatHelpers }: ChatInputProps) => {
1313
const [input, setInput] = useState<string>("");
1414

1515
return (
16-
<div className="fixed bottom-0 left-0 right-0 bg-background py-4">
16+
<div className="fixed bottom-0 left-0 right-0 bg-background py-4 z-10">
1717
<div className="max-w-3xl mx-auto w-full px-4">
1818
<div className="flex flex-col bg-secondary rounded-[10px]">
1919
<ChatInputArea

packages/ui/src/components/markdown-components.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ export const markdownComponents: Partial<Components> = {
1919
},
2020
ul: ({ children, ...props }) => {
2121
return (
22-
<ul className="list-decimal list-outside ml-4" {...props}>
22+
<ul className="list-disc list-outside ml-4" {...props}>
2323
{children}
2424
</ul>
2525
);

0 commit comments

Comments
 (0)