We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dbd3591 commit 462f44eCopy full SHA for 462f44e
apps/postgres-new/components/deployed-database-fields.tsx
@@ -13,7 +13,7 @@ export function DeployedDatabaseFields(props: DeployedDatabaseFieldsProps) {
13
const connectionStringPassword = props.password
14
? encodeURIComponent(props.password)
15
: '[YOUR-PASSWORD]'
16
- const connectionString = `postgresql://${props.username}:${connectionStringPassword}@${props.host}:${port}/${props.databaseName}`
+ const connectionString = `postgresql://${props.username}:${connectionStringPassword}@${props.host}/${props.databaseName}`
17
18
return (
19
<div className="space-y-4">
0 commit comments