From 97ea94ceebdc9c1de37cf13bf035a4c4531d1576 Mon Sep 17 00:00:00 2001 From: Rohan Date: Tue, 10 Jun 2025 13:27:14 +0530 Subject: [PATCH] feat: remove init from node sdk docs --- src/pages/sdks/node.mdx | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/pages/sdks/node.mdx b/src/pages/sdks/node.mdx index cd09b05..78f4183 100644 --- a/src/pages/sdks/node.mdx +++ b/src/pages/sdks/node.mdx @@ -69,8 +69,6 @@ Initialize the SDK with your `token` const token = 'pss_service...' // or process.env.PHASE_TOKEN const phase = new Phase(token) - -await phase.init() ``` @@ -81,8 +79,6 @@ const token = 'pss_service...' // or process.env.PHASE_TOKEN const host = 'https://console.phase.dev' // default const phase = new Phase(token, host) - -await phase.init() ```