diff --git a/apps/web/app/onboarding/setup/chat-sidebar.tsx b/apps/web/app/onboarding/setup/chat-sidebar.tsx
index a8adc2b8..973d31ae 100644
--- a/apps/web/app/onboarding/setup/chat-sidebar.tsx
+++ b/apps/web/app/onboarding/setup/chat-sidebar.tsx
@@ -307,18 +307,6 @@ export function ChatSidebar({ formData }: ChatSidebarProps) {
Close chat
- {messages.length === 0 && !isLoading && !formData && (
-
-
- Waiting for your input
-
- )}
- {isLoading && (
-
-
- Fetching your memories...
-
- )}
{messages.map((msg, i) => (
))}
+ {messages.length === 0 && !isLoading && !formData && (
+
+
+ Waiting for your input
+
+ )}
+ {isLoading && (
+
+
+ Fetching your memories...
+
+ )}
diff --git a/apps/web/app/onboarding/welcome/input-step.tsx b/apps/web/app/onboarding/welcome/input-step.tsx
index 08325b1e..ae567fdb 100644
--- a/apps/web/app/onboarding/welcome/input-step.tsx
+++ b/apps/web/app/onboarding/welcome/input-step.tsx
@@ -45,11 +45,11 @@ export function InputStep({
What should I call you?
-
+
{
@@ -57,7 +57,7 @@ export function InputStep({
handleSubmit()
}
},
- className: "!text-white placeholder:!text-white",
+ className: "!text-white placeholder:!text-[#525966] !h-10",
}}
onChange={(e) => setName((e.target as HTMLInputElement).value)}
style={{
@@ -66,7 +66,7 @@ export function InputStep({
}}
/>