Skip to content

Commit f3b5eba

Browse files
committed
fix: refined inquiry success phrasing to accurately reflect status v1.1.21
1 parent 2ac00a5 commit f3b5eba

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

web/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "web",
3-
"version": "1.1.20",
3+
"version": "1.1.21",
44
"private": true,
55
"scripts": {
66
"dev": "next dev",

web/public/version.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
2-
"version": "1.1.20",
3-
"buildTime": "2025-12-18T18:10:00.000Z"
2+
"version": "1.1.21",
3+
"buildTime": "2025-12-18T18:15:00.000Z"
44
}

web/src/app/(main)/ask/page.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ export default function AskPage() {
214214
<CheckCircle2 className="w-8 h-8" />
215215
</div>
216216
<h3 className="text-xl font-bold text-gray-900">Success!</h3>
217-
<p className="text-gray-500 mt-2 max-w-[250px] mx-auto text-sm">Your request has been sent to Krishnaji.</p>
217+
<p className="text-gray-500 mt-2 max-w-[250px] mx-auto text-sm">Your inquiry has been shared with Krishnaji.</p>
218218
</div>
219219
) : (
220220
<form onSubmit={handleSubmit} className="space-y-5 max-w-md mx-auto">
@@ -291,7 +291,7 @@ export default function AskPage() {
291291
<CheckCircle2 className="w-6 h-6" />
292292
</div>
293293
<div>
294-
<h3 className="font-bold text-gray-900 leading-tight">Request Received</h3>
294+
<h3 className="font-bold text-gray-900 leading-tight">Inquiry Received</h3>
295295
<p className="text-xs text-gray-500 mt-0.5">Krishnaji will respond to your query soon.</p>
296296
</div>
297297
</div>
@@ -423,7 +423,7 @@ export default function AskPage() {
423423
{followUpSuccess[ticket.id] ? (
424424
<div className="flex items-center space-x-3 py-3 px-4 bg-green-50/50 rounded-xl border border-green-100 animate-in fade-in zoom-in duration-300">
425425
<CheckCircle2 className="w-5 h-5 text-green-600" />
426-
<p className="text-xs font-bold text-green-700 uppercase tracking-widest">Guidance shared with Krishnaji</p>
426+
<p className="text-xs font-bold text-green-700 uppercase tracking-widest">Inquiry shared with Krishnaji</p>
427427
</div>
428428
) : (
429429
<div className="space-y-2">

0 commit comments

Comments
 (0)