Skip to content

Commit f3476ea

Browse files
Final deployment commit - AI working with enhanced fallback system - Sat Feb 28 11:47:31 IST 2026
1 parent edeba2a commit f3476ea

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/frontend/app/components/tutor/TopicInput.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ export function TopicInput({ onSubmit, loading, error }: Props) {
2424
value={topic}
2525
onChange={(e) => setTopic(e.target.value)}
2626
onKeyDown={(e) => e.key === "Enter" && topic.trim() && onSubmit(topic.trim(), language)}
27-
placeholder="e.g. Photosynthesis, Newton's Laws, French Revolution..."
27+
placeholder="e.g. Photosynthesis, French Revolution, Solar System..."
2828
className="w-full bg-white border-2 border-gray-600 rounded-xl px-4 py-3 text-[15px] text-gray-800 placeholder:text-gray-500 focus:outline-none focus:border-brand-500 focus:ring-2 focus:ring-brand-500/10 transition-all"
2929
/>
3030
</div>
@@ -35,6 +35,8 @@ export function TopicInput({ onSubmit, loading, error }: Props) {
3535
<select
3636
value={language}
3737
onChange={(e) => setLanguage(e.target.value as Language)}
38+
aria-label="Select language"
39+
title="Select language"
3840
className="bg-white border-2 border-gray-600 rounded-xl px-4 py-3 text-[15px] text-gray-800 focus:outline-none focus:border-brand-500 focus:ring-2 focus:ring-brand-500/10 transition-all"
3941
>
4042
<option value="en">English</option>

0 commit comments

Comments
 (0)