docs: Change key name for dynamic loading docs (#38011)

Change key name for dynamic loading docs
This commit is contained in:
Chris Chinchilla
2025-09-09 09:28:49 +02:00
committed by GitHub
parent 774825c1cc
commit 58100a0121
18 changed files with 23 additions and 23 deletions

View File

@@ -6,7 +6,7 @@ export type Org = OrganizationsData[number]
export type Project = ProjectsData[number]
export type Branch = BranchesData[number]
export type Variable = 'url' | 'anonKey' | 'sessionPooler'
export type Variable = 'url' | 'publishableKey' | 'sessionPooler'
function removeDoubleQuotes(str: string) {
return str.replaceAll('"', '')
@@ -30,7 +30,7 @@ function unescapeDoubleQuotes(str: string) {
export const prettyFormatVariable: Record<Variable, string> = {
url: 'Project URL',
anonKey: 'Anon key',
publishableKey: 'Publishable key',
sessionPooler: 'Connection string (pooler session mode)',
}