From c391b39f9493120e53d2fc7300f96ddbf36dca0e Mon Sep 17 00:00:00 2001 From: June Date: Sun, 11 Jan 2026 19:36:14 -0500 Subject: [PATCH] Fix incorrect method name in Secrets guide. --- en/Plugins/Guides/SecretStorage and SecretComponent.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/en/Plugins/Guides/SecretStorage and SecretComponent.md b/en/Plugins/Guides/SecretStorage and SecretComponent.md index 569ceb28..b6453422 100644 --- a/en/Plugins/Guides/SecretStorage and SecretComponent.md +++ b/en/Plugins/Guides/SecretStorage and SecretComponent.md @@ -85,7 +85,7 @@ The `SecretComponent` presents users with an interface to select from existing s When your plugin needs the actual secret value, use the `SecretStorage` API: ```ts -const secret = app.secretStorage.get(this.settings.mySetting); +const secret = app.secretStorage.getSecret(this.settings.mySetting); if (secret) { // secret value might be null }