Skip to content

Commit 6cbac99

Browse files
authored
Merge pull request #4 from realguse/bugfix/minor-spelling-errors
fix: resolve minor spelling mistakes
2 parents dcf7754 + f53dac0 commit 6cbac99

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,8 @@ npm run dev
4545

4646
```env
4747
OPENAI_API_KEY=your_key
48+
ASTRA_DB_API_ENDPOINT=your_endpoint
4849
ASTRA_DB_APPLICATION_TOKEN=your_token
49-
ASTRA_DB_ENDPOINT=your_endpoint
5050
UPSTASH_REDIS_REST_URL=your_url
5151
UPSTASH_REDIS_REST_TOKEN=your_token
5252
```

src/components/Chat.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ export default function Chat() {
2525

2626
return (
2727
isVisible && (
28-
<Accordion type="single" collapsible className="flexs relative z-40">
28+
<Accordion type="single" collapsible className="relative z-40 flex">
2929
<AccordionItem
3030
value="item-1"
3131
className="fixed bottom-8 right-8 w-80 rounded-md border bg-background"

src/components/email/ContactFormEmail.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ const ContactFormEmail: React.FC<Readonly<ContactFormEmailProps>> = ({
2121
<p>{message}</p>
2222
<hr />
2323
<p>Thank you for your message, {name}! I will reply as soon as I can.</p>
24-
<p>&copy; 2024 tedawf.coms</p>
24+
<p>&copy; 2024 tedawf.com</p>
2525
</div>
2626
);
2727

0 commit comments

Comments
 (0)