Skip to content
This repository has been archived by the owner on Jan 31, 2024. It is now read-only.

Commit

Permalink
fix(plot): remove console logs
Browse files Browse the repository at this point in the history
  • Loading branch information
dnoishi committed Sep 26, 2022
1 parent 951b83c commit d73038d
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/pages/SetupPlot.vue
Original file line number Diff line number Diff line change
Expand Up @@ -248,8 +248,6 @@ export default defineComponent({
methods: {
async confirmCreateDir() {
const dirExists = await native.dirExists(this.store.plotPath);
console.log('🚀 ~ file: SetupPlot.vue ~ line 251 ~ confirmCreateDir ~ this.store.plotPath', this.store.plotPath);
console.log('🚀 ~ file: SetupPlot.vue ~ line 251 ~ confirmCreateDir ~ dirExists', dirExists);
if (dirExists) {
util.infoLogger('SETUP PLOT | found the old plotting directory');
Expand All @@ -260,7 +258,6 @@ export default defineComponent({
});
if (files) {
console.log('🚀 ~ file: SetupPlot.vue ~ line 262 ~ confirmCreateDir ~ files', files);
console.log('FILES ARE: :', files);
if (files.length === 0 || (files.length === 1 && files.some(item => item.name === 'subspace-desktop.cfg'))) {
directoryDialogs.existingDirectoryConfirm(this.store.plotPath, this.startPlotting);
Expand Down

0 comments on commit d73038d

Please sign in to comment.