Skip to content

Commit

Permalink
Remove scanner from startup
Browse files Browse the repository at this point in the history
  • Loading branch information
MBoretto committed Sep 28, 2023
1 parent f375290 commit 2ff8ceb
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,6 @@ export default {
// End of callbacks
//Cloud Storage
addKeyValue() {
if (this.akey === null || this.akey === '') {
this.TWA.showAlert('Key is empty');
return;
Expand All @@ -222,7 +221,6 @@ export default {
},
removeKey(key) {
this.TWA.CloudStorage.removeItem(key);
this.TWA.showAlert('Removed key: ' + key);
},
processKeys(error, data) {
if (error) {
Expand All @@ -237,6 +235,9 @@ export default {
return;
}
this.cloud_storage_values = data;
const mergedArray = keys.map((key, index) => ({ [key]: values[index] }));
},
// End of Cloud Storage
showQRScanner() {
Expand Down

0 comments on commit 2ff8ceb

Please sign in to comment.