refactor: update location display order to state-first and fix minor typos in auth pages

This commit is contained in:
pradeepkumar
2026-04-11 22:52:11 +05:30
parent bfcb37c2ee
commit 11c3fdfde8
8 changed files with 18 additions and 18 deletions

View File

@@ -771,7 +771,7 @@ export function MessagingPage({ initialConversationId, initialAgentProfileId }:
)}
{(agent.city || agent.state) && (
<p className="font-serif font-normal text-[12px] leading-[16px] text-[#00293D]/50">
{[agent.city, agent.state].filter(Boolean).join(', ')}
{[agent.state, agent.city].filter(Boolean).join(', ')}
</p>
)}
</div>