Skip to content

Commit 4cf7312

Browse files
committed
feat: add disclaimer to README and update placeholder text in ChatInput component
1 parent 5431057 commit 4cf7312

File tree

3 files changed

+9
-5
lines changed

3 files changed

+9
-5
lines changed

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,10 @@ TLDR: Notepad + @file from FileTree + git diff + streaming chat + agent + mcp
2020
2121
![demo](public/codexia.png)
2222

23+
## Disclaimer
24+
25+
Codexia is an independent open-source project and is not built by OpenAI or any company.
26+
2327
## ✨ Features
2428

2529
### 🔄 **Multi-Session Support**

src/components/chat/ChatInput.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ export const ChatInput: React.FC<ChatInputProps> = ({
212212
value={inputValue}
213213
onChange={(e) => onInputChange(e.target.value)}
214214
onKeyDown={handleKeyPress}
215-
placeholder={placeholderOverride || "Type your message..."}
215+
placeholder={placeholderOverride || "Ask Codex to do anything"}
216216
className={`min-h-[60px] max-h-[200px] pr-32 bg-gray-100 resize-none overflow-y-auto pb-8 ${
217217
(fileReferences.length > 0 || mediaAttachments.length > 0) ? 'pt-8' : ''
218218
}`}

src/components/layout/AppToolbar.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import {
66
PanelLeftClose,
77
PanelLeftOpen,
88
FolderTree,
9-
Plus,
9+
PencilIcon,
1010
} from "lucide-react";
1111
import { Tabs, TabsList, TabsTrigger } from "../ui/tabs";
1212
import { useConversationStore } from "@/stores/ConversationStore";
@@ -142,7 +142,7 @@ export const AppToolbar: React.FC<AppToolbarProps> = ({
142142
className="h-7 w-7 p-0"
143143
title="Create New Conversation"
144144
>
145-
<Plus className="h-3 w-3" />
145+
<PencilIcon className="h-3 w-3" />
146146
</Button>
147147

148148
{/* Settings Button */}
@@ -159,14 +159,14 @@ export const AppToolbar: React.FC<AppToolbarProps> = ({
159159
)}
160160

161161
{activeTab === "notes" && (
162-
<div className="flex items-center gap-1 shrink-0">
162+
<div className="flex items-center gap-1 shrink-0 pr-2">
163163
<Button
164164
onClick={handleCreateNote}
165165
size="sm"
166166
className="h-7 w-7 p-0"
167167
title="Create New Note"
168168
>
169-
<Plus className="h-3 w-3" />
169+
<PencilIcon className="h-3 w-3" />
170170
</Button>
171171
</div>
172172
)}

0 commit comments

Comments
 (0)