Replace company email with address field

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Krao Hasanee
2026-03-26 23:59:21 -04:00
parent 8b5494a824
commit e7174d392c
3 changed files with 16 additions and 16 deletions
+3 -3
View File
@@ -110,10 +110,10 @@ export default function CompanyDetail() {
<div>
<div className="page-title">{company.name}</div>
<div className="page-subtitle">
{company.email && <>{company.email}</>}
{company.email && company.phone && ' · '}
{company.phone && <>{company.phone}</>}
{!company.email && !company.phone && 'No contact info'}
{company.phone && company.address && ' · '}
{company.address && <>{company.address}</>}
{!company.phone && !company.address && 'No contact info'}
</div>
</div>
<span className="badge badge-client" style={{ fontSize: 13, padding: '6px 14px' }}>Company</span>