refactor: update location display order to state-first and fix minor typos in auth pages
This commit is contained in:
@@ -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>
|
||||
|
||||
@@ -162,7 +162,7 @@ export function NewConversationModal({
|
||||
)}
|
||||
{(contact.city || contact.state) && (
|
||||
<p className="font-serif font-normal text-[11px] leading-[14px] text-[#00293D]/50">
|
||||
{[contact.city, contact.state].filter(Boolean).join(', ')}
|
||||
{[contact.state, contact.city].filter(Boolean).join(', ')}
|
||||
</p>
|
||||
)}
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user