fix accidental hardcoding

This commit is contained in:
Atharva Deosthale
2025-10-28 14:34:43 +05:30
parent 1adc92fde0
commit a67689fc94
2 changed files with 4 additions and 4 deletions
@@ -48,8 +48,8 @@
\`\`\`
val client = Client()
.setEndpoint("https://fra.cloud.appwrite.io/v1")
.setProject("ai-test-atharva")
.setEndpoint("${sdk.forProject(page.params.region, page.params.project).client.config.endpoint}")
.setProject("${projectId}")
val account = Account(client)
\`\`\`
@@ -39,7 +39,7 @@
const projectId = page.params.project;
const alreadyExistsInstructions = `
const alreadyExistsInstructions = `
Install the Appwrite iOS SDK using the following package URL:
\`\`\`
@@ -50,7 +50,7 @@ const alreadyExistsInstructions = `
\`\`\`
let client = Client()
.setEndpoint("https://fra.cloud.appwrite.io/v1")
.setEndpoint("${sdk.forProject(page.params.region, page.params.project).client.config.endpoint}")
.setProject("${projectId}")
let account = Account(client)