chore(stronghold): readme typo (#1028)

pull/1030/head
Victor Aremu 1 year ago committed by GitHub
parent 570fb8f335
commit 54cd4a58b8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -84,7 +84,7 @@ Afterwards all the plugin's APIs are available through the JavaScript guest bind
import { Stronghold, Location, Client } from "tauri-plugin-stronghold-api";
import { appDataDir } from "@tauri-apps/api/path";
const initStrongHold = async () => {
const initStronghold = async () => {
const vaultPath = `${await appDataDir()}/vault.hold`;
const vaultKey = "The key to the vault";
@ -107,7 +107,7 @@ const initStrongHold = async () => {
};
};
const { stronghold, client } = await initStrongHold();
const { stronghold, client } = await initStronghold();
const store = client.getStore();

Loading…
Cancel
Save