Skip to content

Commit cc0800d

Browse files
committed
Remove unnecessary console.log calls
1 parent 203669a commit cc0800d

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

src/gui/src/helpers.js

-5
Original file line numberDiff line numberDiff line change
@@ -852,14 +852,12 @@ window.available_templates = async () => {
852852
const files = await puter.fs.readdir(baseRoute)
853853

854854
const hasTemplateFolder = files.find(file => lowerCaseKeywords.includes(file.name.toLowerCase()))
855-
console.log(hasTemplateFolder)
856855

857856
if(!hasTemplateFolder){
858857
return []
859858
}
860859

861860
const hasTemplateFiles = await puter.fs.readdir(baseRoute + "/" + hasTemplateFolder.name)
862-
console.log(hasTemplateFiles)
863861

864862
if(hasTemplateFiles.length == 0) {
865863
return []
@@ -868,8 +866,6 @@ window.available_templates = async () => {
868866
let result = []
869867

870868
hasTemplateFiles.forEach(element => {
871-
console.log(element)
872-
873869
const extIndex = element.name.lastIndexOf('.');
874870
const name = extIndex === -1
875871
? element.name
@@ -882,7 +878,6 @@ window.available_templates = async () => {
882878

883879
const _path = path.join( baseRoute, hasTemplateFolder.name, element.name);
884880

885-
console.log(_path)
886881
const itemStructure = {
887882
path: _path,
888883
html: `${extension.toUpperCase()} ${name}`,

0 commit comments

Comments
 (0)