Skip to content

Commit

Permalink
comment console logs not need now
Browse files Browse the repository at this point in the history
  • Loading branch information
A1Gard committed Mar 6, 2024
1 parent 8900efd commit f9e3b28
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion anubias2/electron/main/app-menu.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ class AppMenu {
const projectContent = fs.readFileSync(fileName, 'utf-8');
const projectData = JSON.parse(projectContent);
this._win.webContents.send('load-project-data',projectData);
console.log(projectData.pages.length);
// console.log(projectData.pages.length);
this._win.webContents.send('update-project-data', 'projectFile', fileName);
this._win.webContents.send('update-project-data', 'projectPath', path.dirname(fileName));
return true
Expand Down
2 changes: 1 addition & 1 deletion anubias2/src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ store.subscribe((mutation, state) => {
let projectName = state.project.project.name;
let project = JSON.stringify(state.project.project);
const isSaved = state.project.isSave;
console.log('savee', isSaved);
// console.log('savee', isSaved);
// check if project changed then:
// update menu
// promise to screenshot
Expand Down
1 change: 0 additions & 1 deletion anubias2/src/stores/projectStore.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ const projectStore = {
},
LOAD_PROJECT(state, project) {

console.log('prjj',project.pages.length);
state.project = project;

// if this comment not need again must remove
Expand Down

0 comments on commit f9e3b28

Please sign in to comment.