You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have this js method that I call from blazor's OnAfterRender to setup a new store or (TODO: to use existing store):
setUpSecureStore: function (passPhrase) {
const Store = window.SecureStore.Store;
const store = new Store('my-store', passPhrase);
store.init().then(() => {
// store is ready
window.Store = store;
});
},
how to check for existing store so that to set a variable of it in window.Store?
The text was updated successfully, but these errors were encountered:
I have this js method that I call from blazor's OnAfterRender to setup a new store or (TODO: to use existing store):
how to check for existing store so that to set a variable of it in window.Store?
The text was updated successfully, but these errors were encountered: