Skip to content

Commit d865a5c

Browse files
committed
fix indentation and typo
1 parent d5a700e commit d865a5c

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

secure-storage-sample/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Secure Storage Sample
22

3-
This is a simple example plugin which demonstrates how we can store a value using the SecureStorage uxp API. No build steps are required to run the plugin.
3+
This is a simple example plugin which demonstrates how we can store a value using the SecureStorage UXP API. No build steps are required to run the plugin.
44

55
## Loading in Photoshop
66

secure-storage-sample/index.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
const secureStorage = require("uxp").storage.secureStorage;
22

33
async function saveSecureKey() {
4-
const userInput = document.getElementById("secure").value;
5-
await secureStorage.setItem("secure", userInput);
6-
document.getElementById("secure").value = "";
4+
const userInput = document.getElementById("secure").value;
5+
await secureStorage.setItem("secure", userInput);
6+
document.getElementById("secure").value = "";
77
}
88

99
async function fetchSecureKey() {

0 commit comments

Comments
 (0)