Skip to content

Commit b0aaf16

Browse files
committed
remove logs from previous pull req used for testing
1 parent 4e66b26 commit b0aaf16

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

src/component/fileBrowser.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ const LocalFileBrowser = ({ superState, dispatcher }) => {
127127
readFile(superState, dispatcher, fileObj, fileHandle);
128128
} catch (error) {
129129
if (error.name !== 'AbortError') {
130-
console.error(error);
130+
// console.error(error);
131131
}
132132
}
133133
};

src/component/modals/FileEdit.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ const FileEditModal = ({ superState, dispatcher }) => {
5656
dispatcher({ type: T.SET_FILE_STATE, payload: fS });
5757
} catch (error) {
5858
if (error.name !== 'AbortError') {
59-
console.error(error);
59+
// console.error(error);
6060
}
6161
}
6262
}

src/graph-builder/graph-core/5-load-save.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ class GraphLoadSave extends GraphUndoRedo {
135135
toast.success('File saved Successfully');
136136
} catch (error) {
137137
if (error.name !== 'AbortError') {
138-
console.error(error);
138+
// console.error(error);
139139
}
140140
}
141141
} else {
@@ -177,7 +177,7 @@ class GraphLoadSave extends GraphUndoRedo {
177177
toast.success('File saved Successfully');
178178
} catch (error) {
179179
if (error.name !== 'AbortError') {
180-
console.error(error);
180+
// console.error(error);
181181
}
182182
}
183183
}

0 commit comments

Comments
 (0)