Skip to content

Commit

Permalink
removed console logs
Browse files Browse the repository at this point in the history
  • Loading branch information
Ratatinator97 committed Jun 10, 2024
1 parent 49f7387 commit 65585fa
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 4 deletions.
1 change: 0 additions & 1 deletion plugins/dexieDB.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ export let db;

export async function getDatabase() {
if (db.isOpen()) {
console.log("Database is already open");
return db;
} else {
console.log("Database is not open")
Expand Down
3 changes: 0 additions & 3 deletions store/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -910,10 +910,7 @@ async function parseAndUpdateEntireCollection(vuexContext, collection, download
// TODO Est-ce qu'on peut recuperer fatherCollectionId d'une autre facon ?
// SI la collection n'existe pas alors cela sera undefined...
if (localCollection) {
console.log("localCollection: ", localCollection);
console.log("collection: ", collection);
Object.assign(localCollection, collection);
console.log("localCollection after assign: ", localCollection);
collection = localCollection;
collection.fatherCollectionId = localCollection.fatherCollectionId;
} else {
Expand Down

0 comments on commit 65585fa

Please sign in to comment.