Fix display of provider name and DNS records title

Replit-Commit-Author: Agent
Replit-Commit-Session-Id: 9111ef36-26c8-4085-84ca-a35dc1fec1b5
Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/7083d608-d6d3-4a6a-9a27-6286c5109627/7b67c43f-ca0f-410c-a1da-b1d32fe95c3b.jpg
This commit is contained in:
alphaeusmote
2025-04-10 11:46:16 +00:00
parent f7d0f1935b
commit 1af64ec6fd
2 changed files with 16 additions and 3 deletions
+2 -2
View File
@@ -295,7 +295,7 @@ export default function DnsRecordsPage() {
return (
<MainLayout
title={`DNS Records ${domain ? `for ${domain.name}` : ''}`}
title={domain?.name ? `DNS Records for ${domain.name}` : 'DNS Records'}
description="Manage DNS records for your domain."
>
{/* Breadcrumb */}
@@ -306,7 +306,7 @@ export default function DnsRecordsPage() {
</BreadcrumbItem>
<BreadcrumbSeparator />
<BreadcrumbItem>
<BreadcrumbLink href="#">{domain?.name || 'Loading...'}</BreadcrumbLink>
<BreadcrumbLink href="#">{domain?.name || 'Domain'}</BreadcrumbLink>
</BreadcrumbItem>
</Breadcrumb>
</div>