@l4yercak3/cli 1.2.5 → 1.2.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/commands/spread.js +1 -1
package/package.json
CHANGED
package/src/commands/spread.js
CHANGED
|
@@ -569,7 +569,7 @@ async function handleSpread() {
|
|
|
569
569
|
organizationName,
|
|
570
570
|
applicationId,
|
|
571
571
|
projectPathHash,
|
|
572
|
-
apiKey: `${apiKey.substring(0, 10)}
|
|
572
|
+
apiKey: apiKey ? `${apiKey.substring(0, 10)}...` : '(using existing)', // Store partial key for reference only
|
|
573
573
|
backendUrl,
|
|
574
574
|
features,
|
|
575
575
|
oauthProviders,
|