Skip to content

Commit 3e74068

Browse files
authored
improvement: custom domain messaging (#1080)
* Update DomainStep.tsx * logs * Update VerifyStep.tsx * Update VerifyStep.tsx * Update VerifyStep.tsx
1 parent a473ab3 commit 3e74068

2 files changed

Lines changed: 4 additions & 3 deletions

File tree

apps/web/app/(org)/dashboard/settings/organization/components/CustomDomainDialog/DomainStep.tsx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,14 +32,15 @@ const DomainStep = ({
3232
<div className="text-center">
3333
<h3 className="text-lg font-semibold text-gray-12">Your domain</h3>
3434
<p className="text-sm text-gray-11">
35-
Enter the custom domain you'd like to use
35+
Enter the custom domain you'd like to use e.g.{" "}
36+
<span className="font-medium text-gray-12">caps.yourdomain.com</span>
3637
</p>
3738
</div>
3839
<div className="space-y-3">
3940
<Input
4041
type="text"
4142
id="customDomain"
42-
placeholder="your-domain.com"
43+
placeholder="caps.yourdomain.com"
4344
value={domain}
4445
disabled={!isSubscribed || submitLoading}
4546
className={clsx(

apps/web/app/(org)/dashboard/settings/organization/components/CustomDomainDialog/VerifyStep.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ const VerifyStep = ({
131131
<h3 className="text-lg font-semibold text-gray-12">
132132
{isVerified ? "Domain Verified" : "Verify your domain"}
133133
</h3>
134-
<p className="text-sm text-gray-11">
134+
<p className="text-sm text-gray-11 w-full max-w-[350px] mx-auto">
135135
{isVerified
136136
? "Your domain is verified!"
137137
: `Add the DNS records below to verify ownership of ${domain}: wait a minute after updating to verify.`}

0 commit comments

Comments
 (0)