Skip to content

Commit 9e69e9f

Browse files
committed
Fix: Remove redundant archive button from closed inquiries on /ask page
1 parent f579ae2 commit 9e69e9f

1 file changed

Lines changed: 7 additions & 10 deletions

File tree

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

Lines changed: 7 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -186,12 +186,12 @@ export default function AskPage() {
186186
<div className="space-y-2">
187187
<h1 className="text-3xl font-black text-gray-900 tracking-tight">Spiritual Inquiry</h1>
188188
<p className="text-gray-500 text-base leading-relaxed font-medium">
189-
Please sign in to share your spiritual questions and receive personal guidance from the Saileela Rahasya team.
189+
Please identify yourself to share your spiritual questions and receive personal guidance from the Saileela Rahasya team.
190190
</p>
191191
</div>
192192
<SignInButton mode="modal">
193193
<button className="bg-ochre text-white px-10 py-4 rounded-2xl font-black uppercase tracking-widest hover:bg-gold transition-all shadow-xl shadow-ochre/20 w-full md:w-auto active:scale-95">
194-
Sign In to Begin
194+
Identify to Begin
195195
</button>
196196
</SignInButton>
197197
<p className="text-[10px] text-gray-400 font-bold uppercase tracking-widest">
@@ -531,14 +531,11 @@ export default function AskPage() {
531531
</div>
532532
</div>
533533
) : (
534-
<div className="p-4 md:p-6 bg-white border-t border-gray-100 flex justify-center">
535-
<button
536-
onClick={() => setTicketToClose(expandedTicketId)}
537-
className="text-[10px] font-black text-gray-400 uppercase tracking-widest hover:text-red-600 hover:bg-red-50 px-6 py-3 rounded-xl transition-all active:scale-95 flex items-center group border border-dashed border-gray-200 hover:border-red-200 w-full justify-center"
538-
>
539-
<Archive className="w-4 h-4 mr-2 opacity-40 group-hover:opacity-100 transition-opacity" />
540-
Move to Archives
541-
</button>
534+
<div className="p-4 md:p-6 bg-white border-t border-gray-50 flex justify-center items-center">
535+
<div className="flex items-center space-x-2 text-gray-300">
536+
<CheckCircle2 className="w-4 h-4" />
537+
<span className="text-[10px] font-black uppercase tracking-[0.2em]">Inquiry Completed</span>
538+
</div>
542539
</div>
543540
)}
544541
</div>

0 commit comments

Comments
 (0)