@@ -42,7 +42,7 @@ export function DeploySuccessDialog() {
42
42
</ DialogHeader >
43
43
< div className = "flex flex-col gap-8" >
44
44
< p >
45
- Database { deployText } to the Supabase project{ ' ' }
45
+ Database { deployText } to your Supabase project{ ' ' }
46
46
< Link
47
47
target = "_blank"
48
48
rel = "noopener noreferrer"
@@ -56,7 +56,10 @@ export function DeploySuccessDialog() {
56
56
< CopyableField
57
57
label = {
58
58
< >
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 >
60
63
</ >
61
64
}
62
65
value = { project . databaseUrl }
@@ -66,8 +69,12 @@ export function DeploySuccessDialog() {
66
69
< >
67
70
Pooler Connection URL{ ' ' }
68
71
< 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 >
71
78
</ span >
72
79
</ >
73
80
}
@@ -76,13 +83,27 @@ export function DeploySuccessDialog() {
76
83
{ project . databasePassword ? (
77
84
< >
78
85
< 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" >
80
87
{ /* 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.
83
93
</ span >
84
94
</ >
85
95
) : 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 >
86
107
</ p >
87
108
</ div >
88
109
</ DialogContent >
0 commit comments