-
Notifications
You must be signed in to change notification settings - Fork 19
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature/storage adapter #16
Conversation
config/rollup-plugins.js
Outdated
name: 'resolve-virgil-crypto', | ||
resolveId (importee, b) { | ||
if (importee === 'virgil-crypto') { | ||
console.log(importee, b); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If this was meant for debugging purposes, it can be removed
example/E3kitReactNative/App.js
Outdated
} | ||
|
||
componentDidMount() { | ||
const getToken = () => fetch("http://192.168.1.125:3000/get-virgil-jwt") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Shouldn't this be something like http://127.0.0.1:3000
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
it will not work on android, but it is just examples, so
example/E3kitReactNative/App.js
Outdated
.then(res => res.json()) | ||
.then(data => data.token); | ||
|
||
console.log('keyEntryStorage', keyEntryStorage); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We can probably remove this as well.
No description provided.