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
2 changes: 1 addition & 1 deletion src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import React from 'react'
import Show from './components/Show'
import { Button } from './components/ui/button'
import { Input } from './components/ui/input'
import { FormDescription } from './components/ui/form'
// import { FormDescription } from './components/ui/form'

const Popup: React.FC = () => {
const [openAIKey, setOpenAIKey] = React.useState('')
Expand Down
2 changes: 1 addition & 1 deletion src/components/ui/button.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { cva, type VariantProps } from 'class-variance-authority'
import { cn } from '@/lib/utils'

const buttonVariants = cva(
'inline-flex items-center justify-center gap-2 whitespace-nowrap rounded-md text-sm font-medium transition-colors focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-ring disabled:pointer-events-none disabled:opacity-50 [&_svg]:pointer-events-none [&_svg]:size-4 [&_svg]:shrink-0',
' inline-flex items-center justify-center gap-2 whitespace-nowrap rounded-md text-sm font-medium transition-colors focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-ring disabled:pointer-events-none disabled:opacity-50 [&_svg]:pointer-events-none [&_svg]:size-4 [&_svg]:shrink-0',
{
variants: {
variant: {
Expand Down
2 changes: 1 addition & 1 deletion src/content/content.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ function ChatBox({ context }: ChatBoxProps) {
handleGenerateAIResponse()
}
return (
<div className="w-[400px] h-[550px] mb-2 rounded-xl relative text-wrap overflow-auto">
<div className=" bg-black w-[400px] h-[550px] mb-2 rounded-xl relative text-wrap overflow-auto">
<div className="h-[510px] overflow-auto" ref={chatBoxRef}>
{chatHistory.map((message, index) => (
<div
Expand Down