Skip to content

Commit 8c5f14c

Browse files
committed
change wording
1 parent d7cdcec commit 8c5f14c

File tree

1 file changed

+28
-7
lines changed

1 file changed

+28
-7
lines changed

apps/postgres-new/components/deploy-success-dialog.tsx

+28-7
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ export function DeploySuccessDialog() {
4242
</DialogHeader>
4343
<div className="flex flex-col gap-8">
4444
<p>
45-
Database {deployText} to the Supabase project{' '}
45+
Database {deployText} to your Supabase project{' '}
4646
<Link
4747
target="_blank"
4848
rel="noopener noreferrer"
@@ -56,7 +56,10 @@ export function DeploySuccessDialog() {
5656
<CopyableField
5757
label={
5858
<>
59-
Database Connection URL <Badge variant="secondary">IPv6</Badge>
59+
Database Connection URL{' '}
60+
<Badge variant="outline" className="text-muted-foreground">
61+
IPv6
62+
</Badge>
6063
</>
6164
}
6265
value={project.databaseUrl}
@@ -66,8 +69,12 @@ export function DeploySuccessDialog() {
6669
<>
6770
Pooler Connection URL{' '}
6871
<span className="inline-flex gap-1">
69-
<Badge variant="secondary">IPv4</Badge>
70-
<Badge variant="secondary">IPv6</Badge>
72+
<Badge variant="outline" className="text-muted-foreground">
73+
IPv4
74+
</Badge>
75+
<Badge variant="outline" className="text-muted-foreground">
76+
IPv6
77+
</Badge>
7178
</span>
7279
</>
7380
}
@@ -76,13 +83,27 @@ export function DeploySuccessDialog() {
7683
{project.databasePassword ? (
7784
<>
7885
<CopyableField label="Database Password" value={project.databasePassword} />
79-
<span className="text-muted-foreground text-sm font-semibold">
86+
<span className="text-muted-foreground text-sm">
8087
{/* eslint-disable-next-line react/no-unescaped-entities */}
81-
Important: Please save your database password securely as it won't be displayed
82-
again.
88+
Please{' '}
89+
<span className="text-foreground font-semibold">
90+
save your database password securely
91+
</span>{' '}
92+
as it won't be displayed again.
8393
</span>
8494
</>
8595
) : null}
96+
<span className="text-muted-foreground text-sm">
97+
You can change your password and learn more about your connection strings in your{' '}
98+
<Link
99+
target="_blank"
100+
rel="noopener noreferrer"
101+
className="underline underline-offset-4"
102+
href={`${project.url}/settings/database`}
103+
>
104+
database settings
105+
</Link>
106+
</span>
86107
</p>
87108
</div>
88109
</DialogContent>

0 commit comments

Comments
 (0)